pub struct FixtureGroup {
pub category: String,
pub fixtures: Vec<Fixture>,
}Expand description
A group of fixtures sharing the same category.
Fields§
§category: String§fixtures: Vec<Fixture>Trait Implementations§
Source§impl Clone for FixtureGroup
impl Clone for FixtureGroup
Source§fn clone(&self) -> FixtureGroup
fn clone(&self) -> FixtureGroup
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 FixtureGroup
impl RefUnwindSafe for FixtureGroup
impl Send for FixtureGroup
impl Sync for FixtureGroup
impl Unpin for FixtureGroup
impl UnsafeUnpin for FixtureGroup
impl UnwindSafe for FixtureGroup
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