pub struct ExhibitState {
pub name: String,
pub type_name: Option<String>,
pub redefines: Option<String>,
pub body: StateDefBody,
}Expand description
Exhibit state usage: exhibit state name : type (; or body).
Fields§
§name: String§type_name: Option<String>§redefines: Option<String>§body: StateDefBodyTrait Implementations§
Source§impl Clone for ExhibitState
impl Clone for ExhibitState
Source§fn clone(&self) -> ExhibitState
fn clone(&self) -> ExhibitState
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 moreSource§impl Debug for ExhibitState
impl Debug for ExhibitState
impl Eq for ExhibitState
Source§impl PartialEq for ExhibitState
impl PartialEq for ExhibitState
Source§fn eq(&self, other: &ExhibitState) -> bool
fn eq(&self, other: &ExhibitState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExhibitState
Auto Trait Implementations§
impl Freeze for ExhibitState
impl RefUnwindSafe for ExhibitState
impl Send for ExhibitState
impl Sync for ExhibitState
impl Unpin for ExhibitState
impl UnsafeUnpin for ExhibitState
impl UnwindSafe for ExhibitState
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