pub struct SourceNormalizerOperationStatus {
pub completed: bool,
pub message: Option<String>,
}Expand description
Success payload used by source-normalizer session operations.
Resource cancellation may report completed = false after accepting the
request while background work is still terminating. Callers observe the
terminal state through poll or wait_for_update.
Fields§
§completed: bool§message: Option<String>Trait Implementations§
Source§impl Clone for SourceNormalizerOperationStatus
impl Clone for SourceNormalizerOperationStatus
Source§fn clone(&self) -> SourceNormalizerOperationStatus
fn clone(&self) -> SourceNormalizerOperationStatus
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 Default for SourceNormalizerOperationStatus
impl Default for SourceNormalizerOperationStatus
Source§fn default() -> SourceNormalizerOperationStatus
fn default() -> SourceNormalizerOperationStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceNormalizerOperationStatus
impl<'de> Deserialize<'de> for SourceNormalizerOperationStatus
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 SourceNormalizerOperationStatus
impl StructuralPartialEq for SourceNormalizerOperationStatus
Auto Trait Implementations§
impl Freeze for SourceNormalizerOperationStatus
impl RefUnwindSafe for SourceNormalizerOperationStatus
impl Send for SourceNormalizerOperationStatus
impl Sync for SourceNormalizerOperationStatus
impl Unpin for SourceNormalizerOperationStatus
impl UnsafeUnpin for SourceNormalizerOperationStatus
impl UnwindSafe for SourceNormalizerOperationStatus
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