#[repr(C)]pub struct CustomSection {
pub name: String,
pub data: Vec<u8>,
}
Fields§
§name: String
§data: Vec<u8>
Trait Implementations§
Source§impl Clone for CustomSection
impl Clone for CustomSection
Source§fn clone(&self) -> CustomSection
fn clone(&self) -> CustomSection
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 CustomSection
impl Debug for CustomSection
Source§impl<'de> Deserialize<'de> for CustomSection
impl<'de> Deserialize<'de> for CustomSection
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CustomSection
impl PartialEq for CustomSection
Source§impl Serialize for CustomSection
impl Serialize for CustomSection
impl StructuralPartialEq for CustomSection
Auto Trait Implementations§
impl Freeze for CustomSection
impl RefUnwindSafe for CustomSection
impl Send for CustomSection
impl Sync for CustomSection
impl Unpin for CustomSection
impl UnwindSafe for CustomSection
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