pub struct DeserializedState {
pub params: Vec<(u32, f64)>,
pub extra: Option<Vec<u8>>,
pub persist: Vec<u8>,
}Expand description
Deserialized state.
Fields§
§params: Vec<(u32, f64)>§extra: Option<Vec<u8>>§persist: Vec<u8>#[persist]-field bytes (a keyed blob the Params derive
produces). Empty when the plugin has no persist fields, or the
envelope predates persistence.
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