pub struct ScaleReply {
pub error: Option<String>,
}Expand description
Reply to a ScaleRequest: None error on success.
Fields§
§error: Option<String>A human-readable reason on failure (planning error or a spawn failure);
None when the scale was applied.
Trait Implementations§
Source§impl Clone for ScaleReply
impl Clone for ScaleReply
Source§fn clone(&self) -> ScaleReply
fn clone(&self) -> ScaleReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScaleReply
impl Debug for ScaleReply
Source§impl<'de> Deserialize<'de> for ScaleReply
impl<'de> Deserialize<'de> for ScaleReply
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 ScaleReply
Source§impl PartialEq for ScaleReply
impl PartialEq for ScaleReply
Source§impl Serialize for ScaleReply
impl Serialize for ScaleReply
impl StructuralPartialEq for ScaleReply
Auto Trait Implementations§
impl Freeze for ScaleReply
impl RefUnwindSafe for ScaleReply
impl Send for ScaleReply
impl Sync for ScaleReply
impl Unpin for ScaleReply
impl UnsafeUnpin for ScaleReply
impl UnwindSafe for ScaleReply
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