pub struct FilteredOperation {
pub operation_id: String,
pub operation_name: String,
pub reason: FilterReason,
pub policy: String,
}Expand description
An operation that was filtered during derivation.
Fields§
§operation_id: StringOperation that was filtered.
operation_name: StringOperation name for display.
reason: FilterReasonWhy it was filtered.
policy: StringWhich policy caused the filter.
Trait Implementations§
Source§impl Clone for FilteredOperation
impl Clone for FilteredOperation
Source§fn clone(&self) -> FilteredOperation
fn clone(&self) -> FilteredOperation
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 FilteredOperation
impl Debug for FilteredOperation
Source§impl<'de> Deserialize<'de> for FilteredOperation
impl<'de> Deserialize<'de> for FilteredOperation
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
Auto Trait Implementations§
impl Freeze for FilteredOperation
impl RefUnwindSafe for FilteredOperation
impl Send for FilteredOperation
impl Sync for FilteredOperation
impl Unpin for FilteredOperation
impl UnsafeUnpin for FilteredOperation
impl UnwindSafe for FilteredOperation
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