pub struct Group<'a> {
pub layout: &'a str,
pub variant: &'a str,
}Expand description
An RMLVO group consisting of a layout and a variant.
Fields§
§layout: &'a strThe layout of the group.
variant: &'a strThe variant of the group. Can be an empty string.
Trait Implementations§
Source§impl<'de: 'a, 'a> Deserialize<'de> for Group<'a>
impl<'de: 'a, 'a> Deserialize<'de> for Group<'a>
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
impl<'a> Copy for Group<'a>
impl<'a> Eq for Group<'a>
impl<'a> StructuralPartialEq for Group<'a>
Auto Trait Implementations§
impl<'a> Freeze for Group<'a>
impl<'a> RefUnwindSafe for Group<'a>
impl<'a> Send for Group<'a>
impl<'a> Sync for Group<'a>
impl<'a> Unpin for Group<'a>
impl<'a> UnsafeUnpin for Group<'a>
impl<'a> UnwindSafe for Group<'a>
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