pub struct AiPromptProgressStatusComparator {
pub eq: MaybeUndefined<AiPromptProgressStatus>,
pub neq: MaybeUndefined<AiPromptProgressStatus>,
pub in: MaybeUndefined<Vec<AiPromptProgressStatus>>,
pub nin: MaybeUndefined<Vec<AiPromptProgressStatus>>,
pub null: MaybeUndefined<bool>,
}Expand description
Internal Comparator for the AI prompt workflow status.
Fields§
§eq: MaybeUndefined<AiPromptProgressStatus>Equals constraint.
neq: MaybeUndefined<AiPromptProgressStatus>Not-equals constraint.
in: MaybeUndefined<Vec<AiPromptProgressStatus>>In-array constraint.
nin: MaybeUndefined<Vec<AiPromptProgressStatus>>Not-in-array constraint.
null: MaybeUndefined<bool>Null constraint. Matches any non-null values if the given value is false, otherwise it matches null values.
Trait Implementations§
Source§impl Clone for AiPromptProgressStatusComparator
impl Clone for AiPromptProgressStatusComparator
Source§fn clone(&self) -> AiPromptProgressStatusComparator
fn clone(&self) -> AiPromptProgressStatusComparator
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 Default for AiPromptProgressStatusComparator
impl Default for AiPromptProgressStatusComparator
Source§fn default() -> AiPromptProgressStatusComparator
fn default() -> AiPromptProgressStatusComparator
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AiPromptProgressStatusComparator
impl<'de> Deserialize<'de> for AiPromptProgressStatusComparator
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 AiPromptProgressStatusComparator
impl RefUnwindSafe for AiPromptProgressStatusComparator
impl Send for AiPromptProgressStatusComparator
impl Sync for AiPromptProgressStatusComparator
impl Unpin for AiPromptProgressStatusComparator
impl UnsafeUnpin for AiPromptProgressStatusComparator
impl UnwindSafe for AiPromptProgressStatusComparator
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