pub struct BoxState {
pub id: BoxId,
pub name: String,
pub owner: BoxOwner,
pub created_at: EventId,
pub canonical: CanonicalRevision,
pub representation: Representation,
pub occurrence_events: Vec<EventId>,
pub active: bool,
}Fields§
§id: BoxId§name: String§owner: BoxOwner§created_at: EventId§canonical: CanonicalRevision§representation: Representation§occurrence_events: Vec<EventId>§active: boolImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for BoxState
impl<'de> Deserialize<'de> for BoxState
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 Eq for BoxState
impl StructuralPartialEq for BoxState
Auto Trait Implementations§
impl Freeze for BoxState
impl RefUnwindSafe for BoxState
impl Send for BoxState
impl Sync for BoxState
impl Unpin for BoxState
impl UnsafeUnpin for BoxState
impl UnwindSafe for BoxState
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