pub struct DeleteNodeItem { /* private fields */ }Expand description
Container for a single item in a DeleteNodes service call.
Implementations§
Source§impl DeleteNodeItem
impl DeleteNodeItem
Sourcepub fn status(&self) -> StatusCode
pub fn status(&self) -> StatusCode
Current status of the operation.
Sourcepub fn set_result(&mut self, status: StatusCode)
pub fn set_result(&mut self, status: StatusCode)
Set the result of the node deletion operation.
Sourcepub fn delete_target_references(&self) -> bool
pub fn delete_target_references(&self) -> bool
Whether the request should delete references that point to this node or not.
Sourcepub fn diagnostic_bits(&self) -> DiagnosticBits
pub fn diagnostic_bits(&self) -> DiagnosticBits
Header diagnostic bits for requesting operation-level diagnostics.
Sourcepub fn set_diagnostic_info(&mut self, diagnostic_info: DiagnosticInfo)
pub fn set_diagnostic_info(&mut self, diagnostic_info: DiagnosticInfo)
Set diagnostic infos, you don’t need to do this if
diagnostic_bits are not set.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DeleteNodeItem
impl RefUnwindSafe for DeleteNodeItem
impl Send for DeleteNodeItem
impl Sync for DeleteNodeItem
impl Unpin for DeleteNodeItem
impl UnsafeUnpin for DeleteNodeItem
impl UnwindSafe for DeleteNodeItem
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