pub struct WorkGraphSnapshotFilter {
pub realm_id: Option<String>,
pub namespace: Option<WorkNamespace>,
pub all_namespaces: bool,
pub statuses: Vec<WorkStatus>,
pub labels: Vec<String>,
pub include_terminal: bool,
pub limit: Option<usize>,
}Fields§
§realm_id: Option<String>§namespace: Option<WorkNamespace>§all_namespaces: bool§statuses: Vec<WorkStatus>§labels: Vec<String>§include_terminal: bool§limit: Option<usize>Trait Implementations§
Source§impl Clone for WorkGraphSnapshotFilter
impl Clone for WorkGraphSnapshotFilter
Source§fn clone(&self) -> WorkGraphSnapshotFilter
fn clone(&self) -> WorkGraphSnapshotFilter
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 WorkGraphSnapshotFilter
impl Debug for WorkGraphSnapshotFilter
Source§impl Default for WorkGraphSnapshotFilter
impl Default for WorkGraphSnapshotFilter
Source§fn default() -> WorkGraphSnapshotFilter
fn default() -> WorkGraphSnapshotFilter
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkGraphSnapshotFilter
impl<'de> Deserialize<'de> for WorkGraphSnapshotFilter
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 WorkGraphSnapshotFilter
impl RefUnwindSafe for WorkGraphSnapshotFilter
impl Send for WorkGraphSnapshotFilter
impl Sync for WorkGraphSnapshotFilter
impl Unpin for WorkGraphSnapshotFilter
impl UnsafeUnpin for WorkGraphSnapshotFilter
impl UnwindSafe for WorkGraphSnapshotFilter
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