pub struct ConstraintRequest {
pub name: String,
pub kind: StoredConstraintKind,
pub entity: StoredIndexEntity,
pub label: String,
pub properties: Vec<String>,
}Fields§
§name: String§kind: StoredConstraintKind§entity: StoredIndexEntity§label: String§properties: Vec<String>Trait Implementations§
Source§impl Clone for ConstraintRequest
impl Clone for ConstraintRequest
Source§fn clone(&self) -> ConstraintRequest
fn clone(&self) -> ConstraintRequest
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 ConstraintRequest
impl Debug for ConstraintRequest
Source§impl<'de> Deserialize<'de> for ConstraintRequest
impl<'de> Deserialize<'de> for ConstraintRequest
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 ConstraintRequest
impl PartialEq for ConstraintRequest
Source§fn eq(&self, other: &ConstraintRequest) -> bool
fn eq(&self, other: &ConstraintRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConstraintRequest
impl Serialize for ConstraintRequest
impl StructuralPartialEq for ConstraintRequest
Auto Trait Implementations§
impl Freeze for ConstraintRequest
impl RefUnwindSafe for ConstraintRequest
impl Send for ConstraintRequest
impl Sync for ConstraintRequest
impl Unpin for ConstraintRequest
impl UnsafeUnpin for ConstraintRequest
impl UnwindSafe for ConstraintRequest
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