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