pub struct LayoutEntry {
pub segment_type: String,
pub length: usize,
}Expand description
Layout entry describing content ordering.
Fields§
§segment_type: String§length: usizeTrait Implementations§
Source§impl Clone for LayoutEntry
impl Clone for LayoutEntry
Source§fn clone(&self) -> LayoutEntry
fn clone(&self) -> LayoutEntry
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 LayoutEntry
impl Debug for LayoutEntry
Source§impl Default for LayoutEntry
impl Default for LayoutEntry
Source§fn default() -> LayoutEntry
fn default() -> LayoutEntry
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LayoutEntry
impl<'de> Deserialize<'de> for LayoutEntry
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
Auto Trait Implementations§
impl Freeze for LayoutEntry
impl RefUnwindSafe for LayoutEntry
impl Send for LayoutEntry
impl Sync for LayoutEntry
impl Unpin for LayoutEntry
impl UnsafeUnpin for LayoutEntry
impl UnwindSafe for LayoutEntry
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