pub struct WindowDefinitionSegment {
pub windows: Vec<WindowDefinition>,
}Expand description
Window Definition Segment contains one or more window definitions.
Fields§
§windows: Vec<WindowDefinition>List of window definitions
Implementations§
Source§impl WindowDefinitionSegment
impl WindowDefinitionSegment
Sourcepub fn parse(reader: &mut BigEndianReader<'_>, _length: usize) -> Option<Self>
pub fn parse(reader: &mut BigEndianReader<'_>, _length: usize) -> Option<Self>
Parse a window definition segment from binary data.
Trait Implementations§
Source§impl Clone for WindowDefinitionSegment
impl Clone for WindowDefinitionSegment
Source§fn clone(&self) -> WindowDefinitionSegment
fn clone(&self) -> WindowDefinitionSegment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for WindowDefinitionSegment
impl RefUnwindSafe for WindowDefinitionSegment
impl Send for WindowDefinitionSegment
impl Sync for WindowDefinitionSegment
impl Unpin for WindowDefinitionSegment
impl UnsafeUnpin for WindowDefinitionSegment
impl UnwindSafe for WindowDefinitionSegment
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