pub struct T35 {
pub country_code: u8,
pub country_code_extension_byte: u8,
pub data: Box<[u8]>,
}
Expand description
A single T.35 metadata packet.
Fields§
§country_code: u8
Country code.
country_code_extension_byte: u8
Country code extension bytes (if country_code == 0xFF)
data: Box<[u8]>
T.35 payload.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for T35
impl RefUnwindSafe for T35
impl Send for T35
impl Sync for T35
impl Unpin for T35
impl UnwindSafe for T35
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more