pub struct DeserializedState {
pub params: Vec<(u32, f64)>,
pub extra: Option<Vec<u8>>,
}Expand description
Deserialized state.
Fields§
§params: Vec<(u32, f64)>§extra: Option<Vec<u8>>Trait Implementations§
Source§impl From<MigratedState> for DeserializedState
impl From<MigratedState> for DeserializedState
Source§fn from(migrated: MigratedState) -> Self
fn from(migrated: MigratedState) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DeserializedState
impl RefUnwindSafe for DeserializedState
impl Send for DeserializedState
impl Sync for DeserializedState
impl Unpin for DeserializedState
impl UnsafeUnpin for DeserializedState
impl UnwindSafe for DeserializedState
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