pub struct EncodingSupplemental {
pub format: u8,
pub supplement_count: u8,
pub supplements: Vec<Supplement>,
}
Expand description
An encoding in the supplemental format.
Fields§
§format: u8
§supplement_count: u8
§supplements: Vec<Supplement>
Trait Implementations§
Source§impl Clone for EncodingSupplemental
impl Clone for EncodingSupplemental
Source§fn clone(&self) -> EncodingSupplemental
fn clone(&self) -> EncodingSupplemental
Returns a duplicate 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 EncodingSupplemental
impl Debug for EncodingSupplemental
Source§impl Default for EncodingSupplemental
impl Default for EncodingSupplemental
Source§fn default() -> EncodingSupplemental
fn default() -> EncodingSupplemental
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EncodingSupplemental
impl RefUnwindSafe for EncodingSupplemental
impl Send for EncodingSupplemental
impl Sync for EncodingSupplemental
impl Unpin for EncodingSupplemental
impl UnwindSafe for EncodingSupplemental
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