pub struct GraphGuard {
pub step: String,
pub field: String,
pub equals: Option<JsonValue>,
pub not_equals: Option<JsonValue>,
}Fields§
§step: String§field: String§equals: Option<JsonValue>§not_equals: Option<JsonValue>Trait Implementations§
Source§impl Clone for GraphGuard
impl Clone for GraphGuard
Source§fn clone(&self) -> GraphGuard
fn clone(&self) -> GraphGuard
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 GraphGuard
impl Debug for GraphGuard
Source§impl<'de> Deserialize<'de> for GraphGuard
impl<'de> Deserialize<'de> for GraphGuard
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
Source§impl PartialEq for GraphGuard
impl PartialEq for GraphGuard
Source§fn eq(&self, other: &GraphGuard) -> bool
fn eq(&self, other: &GraphGuard) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for GraphGuard
impl Serialize for GraphGuard
impl StructuralPartialEq for GraphGuard
Auto Trait Implementations§
impl Freeze for GraphGuard
impl RefUnwindSafe for GraphGuard
impl Send for GraphGuard
impl Sync for GraphGuard
impl Unpin for GraphGuard
impl UnsafeUnpin for GraphGuard
impl UnwindSafe for GraphGuard
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