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<BoxState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<BoxState, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BoxState
Source§impl Serialize for BoxState
impl Serialize for BoxState
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
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