pub struct LayoutChainEntry {
pub id: String,
pub loader_keys: Vec<String>,
}Expand description
One entry in a layout chain (outer to inner order). Each layout owns a set of loader data keys.
Fields§
§id: String§loader_keys: Vec<String>Trait Implementations§
Source§impl Clone for LayoutChainEntry
impl Clone for LayoutChainEntry
Source§fn clone(&self) -> LayoutChainEntry
fn clone(&self) -> LayoutChainEntry
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 LayoutChainEntry
impl Debug for LayoutChainEntry
Source§impl<'de> Deserialize<'de> for LayoutChainEntry
impl<'de> Deserialize<'de> for LayoutChainEntry
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 LayoutChainEntry
impl RefUnwindSafe for LayoutChainEntry
impl Send for LayoutChainEntry
impl Sync for LayoutChainEntry
impl Unpin for LayoutChainEntry
impl UnsafeUnpin for LayoutChainEntry
impl UnwindSafe for LayoutChainEntry
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