pub struct NodeErrorReport {
pub message: String,
pub name: NodeProvisionErrorType,
}
Fields§
§message: String
Error message containing the reason why node agent failed
name: NodeProvisionErrorType
Implementations§
Source§impl NodeErrorReport
impl NodeErrorReport
pub fn new(message: String, name: NodeProvisionErrorType) -> NodeErrorReport
Trait Implementations§
Source§impl Clone for NodeErrorReport
impl Clone for NodeErrorReport
Source§fn clone(&self) -> NodeErrorReport
fn clone(&self) -> NodeErrorReport
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 NodeErrorReport
impl Debug for NodeErrorReport
Source§impl<'de> Deserialize<'de> for NodeErrorReport
impl<'de> Deserialize<'de> for NodeErrorReport
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 NodeErrorReport
impl PartialEq for NodeErrorReport
Source§impl Serialize for NodeErrorReport
impl Serialize for NodeErrorReport
impl StructuralPartialEq for NodeErrorReport
Auto Trait Implementations§
impl Freeze for NodeErrorReport
impl RefUnwindSafe for NodeErrorReport
impl Send for NodeErrorReport
impl Sync for NodeErrorReport
impl Unpin for NodeErrorReport
impl UnwindSafe for NodeErrorReport
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