pub struct EnumDomain {
pub domain: String,
pub members: Vec<EnumMember>,
/* private fields */
}Expand description
One enum value domain (e.g. Color, Beam).
Fields§
§domain: String§members: Vec<EnumMember>Implementations§
Trait Implementations§
Source§impl Clone for EnumDomain
impl Clone for EnumDomain
Source§fn clone(&self) -> EnumDomain
fn clone(&self) -> EnumDomain
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 EnumDomain
impl RefUnwindSafe for EnumDomain
impl Send for EnumDomain
impl Sync for EnumDomain
impl Unpin for EnumDomain
impl UnsafeUnpin for EnumDomain
impl UnwindSafe for EnumDomain
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