pub struct MethodResponseStarted {
pub operation_id: String,
pub discarded_items: Option<usize>,
}Expand description
The started result of a method.
Fields§
§operation_id: StringThe operation id of the response.
discarded_items: Option<usize>The number of items from the back of the chainHead_storage that have been discarded.
Trait Implementations§
Source§impl Clone for MethodResponseStarted
impl Clone for MethodResponseStarted
Source§fn clone(&self) -> MethodResponseStarted
fn clone(&self) -> MethodResponseStarted
Returns a duplicate of the value. Read more
1.0.0 · 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 MethodResponseStarted
impl Debug for MethodResponseStarted
Source§impl<'de> Deserialize<'de> for MethodResponseStarted
impl<'de> Deserialize<'de> for MethodResponseStarted
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
Source§impl PartialEq for MethodResponseStarted
impl PartialEq for MethodResponseStarted
Source§impl Serialize for MethodResponseStarted
impl Serialize for MethodResponseStarted
impl Eq for MethodResponseStarted
impl StructuralPartialEq for MethodResponseStarted
Auto Trait Implementations§
impl Freeze for MethodResponseStarted
impl RefUnwindSafe for MethodResponseStarted
impl Send for MethodResponseStarted
impl Sync for MethodResponseStarted
impl Unpin for MethodResponseStarted
impl UnwindSafe for MethodResponseStarted
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