pub struct DIFReference {
pub value: DIFValueContainer,
pub allowed_type: DIFTypeDefinition,
pub mutability: SharedContainerMutability,
}Fields§
§value: DIFValueContainer§allowed_type: DIFTypeDefinition§mutability: SharedContainerMutabilityImplementations§
Source§impl DIFReference
impl DIFReference
pub fn from_reference(reference: &SharedContainer) -> Self
Trait Implementations§
Source§impl Clone for DIFReference
impl Clone for DIFReference
Source§fn clone(&self) -> DIFReference
fn clone(&self) -> DIFReference
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 DIFReference
impl Debug for DIFReference
Source§impl<'de> Deserialize<'de> for DIFReference
impl<'de> Deserialize<'de> for DIFReference
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 DIFReference
impl PartialEq for DIFReference
Source§impl Serialize for DIFReference
impl Serialize for DIFReference
impl StructuralPartialEq for DIFReference
Auto Trait Implementations§
impl Freeze for DIFReference
impl RefUnwindSafe for DIFReference
impl Send for DIFReference
impl Sync for DIFReference
impl Unpin for DIFReference
impl UnsafeUnpin for DIFReference
impl UnwindSafe for DIFReference
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more