Struct gstreamer::format::Undefined [−][src]
pub struct Undefined(pub i64);
Methods from Deref<Target = i64>
pub const MIN: i64
1.43.0[src]
pub const MAX: i64
1.43.0[src]
pub const BITS: u32
1.53.0[src]
pub fn as_ne_bytes(&self) -> &[u8; 8]
[src]
🔬 This is a nightly-only experimental API. (num_as_ne_bytes
)
pub fn as_ne_bytes(&self) -> &[u8; 8]
[src]num_as_ne_bytes
)Return the memory representation of this integer as a byte array in native byte order.
to_ne_bytes
should be preferred over this whenever possible.
Examples
#![feature(num_as_ne_bytes)] let num = 0x1234567890123456i64; let bytes = num.as_ne_bytes(); assert_eq!( bytes, if cfg!(target_endian = "big") { &[0x12, 0x34, 0x56, 0x78, 0x90, 0x12, 0x34, 0x56] } else { &[0x56, 0x34, 0x12, 0x90, 0x78, 0x56, 0x34, 0x12] } );
Trait Implementations
impl<'de> Deserialize<'de> for Undefined
[src]
impl<'de> Deserialize<'de> for Undefined
[src]fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
[src]
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
[src]Deserialize this value from the given Serde deserializer. Read more
impl FormattedValue for Undefined
[src]
impl FormattedValue for Undefined
[src]impl From<Undefined> for GenericFormattedValue
[src]
impl From<Undefined> for GenericFormattedValue
[src]impl Ord for Undefined
[src]
impl Ord for Undefined
[src]impl PartialOrd<Undefined> for Undefined
[src]
impl PartialOrd<Undefined> for Undefined
[src]fn partial_cmp(&self, other: &Undefined) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &Undefined) -> Option<Ordering>
[src]This method returns an ordering between self
and other
values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than (for self
and other
) and is used by the <
operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool
1.0.0[src]This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl TryFrom<GenericFormattedValue> for Undefined
[src]
impl TryFrom<GenericFormattedValue> for Undefined
[src]type Error = TryFromGenericFormattedValueError
type Error = TryFromGenericFormattedValueError
The type returned in the event of a conversion error.
fn try_from(
v: GenericFormattedValue
) -> Result<Undefined, TryFromGenericFormattedValueError>
[src]
fn try_from(
v: GenericFormattedValue
) -> Result<Undefined, TryFromGenericFormattedValueError>
[src]Performs the conversion.
impl Copy for Undefined
[src]
impl Eq for Undefined
[src]
impl SpecificFormattedValue for Undefined
[src]
impl StructuralEq for Undefined
[src]
impl StructuralPartialEq for Undefined
[src]
Auto Trait Implementations
impl RefUnwindSafe for Undefined
impl Send for Undefined
impl Sync for Undefined
impl Unpin for Undefined
impl UnwindSafe for Undefined
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]pub fn borrow_mut(&mut self) -> &mut T
[src]
pub fn borrow_mut(&mut self) -> &mut T
[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone,
[src]
impl<T> ToOwned for T where
T: Clone,
[src]type Owned = T
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn to_owned(&self) -> T
[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)
[src]
pub fn clone_into(&self, target: &mut T)
[src]🔬 This is a nightly-only experimental API. (toowned_clone_into
)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
T: for<'de> Deserialize<'de>,