Struct flv_codec::TimeOffset [−][src]
pub struct TimeOffset(_);
24-bits signed timestamp offset in milliseconds.
Methods
impl TimeOffset[src]
impl TimeOffsetpub fn new(offset: i32) -> Result<Self>[src]
pub fn new(offset: i32) -> Result<Self>Makes a new TimeOffset instance.
Errors
If offset is out-of-range of signed 24-bit integers,
it will return an ErrorKind::InvalidInput error.
pub fn value(self) -> i32[src]
pub fn value(self) -> i32Returns the value of this time offset.
Trait Implementations
impl Debug for TimeOffset[src]
impl Debug for TimeOffsetfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for TimeOffset[src]
impl Clone for TimeOffsetfn clone(&self) -> TimeOffset[src]
fn clone(&self) -> TimeOffsetReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl Copy for TimeOffset[src]
impl Copy for TimeOffsetimpl PartialEq for TimeOffset[src]
impl PartialEq for TimeOffsetfn eq(&self, other: &TimeOffset) -> bool[src]
fn eq(&self, other: &TimeOffset) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &TimeOffset) -> bool[src]
fn ne(&self, other: &TimeOffset) -> boolThis method tests for !=.
impl Eq for TimeOffset[src]
impl Eq for TimeOffsetimpl Hash for TimeOffset[src]
impl Hash for TimeOffsetfn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash<__H: Hasher>(&self, state: &mut __H)Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl PartialOrd for TimeOffset[src]
impl PartialOrd for TimeOffsetfn partial_cmp(&self, other: &TimeOffset) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &TimeOffset) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, other: &TimeOffset) -> bool[src]
fn lt(&self, other: &TimeOffset) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, other: &TimeOffset) -> bool[src]
fn le(&self, other: &TimeOffset) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, other: &TimeOffset) -> bool[src]
fn gt(&self, other: &TimeOffset) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, other: &TimeOffset) -> bool[src]
fn ge(&self, other: &TimeOffset) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Ord for TimeOffset[src]
impl Ord for TimeOffsetfn cmp(&self, other: &TimeOffset) -> Ordering[src]
fn cmp(&self, other: &TimeOffset) -> OrderingThis method returns an Ordering between self and other. Read more
fn max(self, other: Self) -> Self1.21.0[src]
fn max(self, other: Self) -> SelfCompares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> SelfCompares and returns the minimum of two values. Read more
Auto Trait Implementations
impl Send for TimeOffset
impl Send for TimeOffsetimpl Sync for TimeOffset
impl Sync for TimeOffset