#[non_exhaustive]pub struct StartCommercial {
pub length: CommercialLength,
pub message: String,
pub retry_after: u64,
}
Available on crate feature
helix
only.Expand description
Return Values for Start Commercial
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.length: CommercialLength
Length of the triggered commercial
message: String
Provides contextual information on why the request failed
retry_after: u64
Seconds until the next commercial can be served on this channel
Trait Implementations§
Source§impl Clone for StartCommercial
impl Clone for StartCommercial
Source§fn clone(&self) -> StartCommercial
fn clone(&self) -> StartCommercial
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for StartCommercial
impl Debug for StartCommercial
Source§impl<'de> Deserialize<'de> for StartCommercial
impl<'de> Deserialize<'de> for StartCommercial
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for StartCommercial
impl PartialEq for StartCommercial
Source§impl Serialize for StartCommercial
impl Serialize for StartCommercial
impl Eq for StartCommercial
impl StructuralPartialEq for StartCommercial
Auto Trait Implementations§
impl Freeze for StartCommercial
impl RefUnwindSafe for StartCommercial
impl Send for StartCommercial
impl Sync for StartCommercial
impl Unpin for StartCommercial
impl UnwindSafe for StartCommercial
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more