pub struct PropertyInstanceDefinition {
pub name: String,
pub value: Value,
}
Fields§
§name: String
§value: Value
Implementations§
Trait Implementations§
Source§impl Debug for PropertyInstanceDefinition
impl Debug for PropertyInstanceDefinition
Source§impl InputObject for PropertyInstanceDefinition
impl InputObject for PropertyInstanceDefinition
Source§type SchemaType = PropertyInstanceDefinition
type SchemaType = PropertyInstanceDefinition
The input object in the schema that this type represents.
impl CoercesTo<Option<Option<PropertyInstanceDefinition>>> for PropertyInstanceDefinition
impl CoercesTo<Option<PropertyInstanceDefinition>> for PropertyInstanceDefinition
impl CoercesTo<Option<Vec<Option<PropertyInstanceDefinition>>>> for PropertyInstanceDefinition
impl CoercesTo<Option<Vec<PropertyInstanceDefinition>>> for PropertyInstanceDefinition
impl CoercesTo<PropertyInstanceDefinition> for PropertyInstanceDefinition
impl CoercesTo<Vec<PropertyInstanceDefinition>> for PropertyInstanceDefinition
impl CoercesTo<Vec<Vec<PropertyInstanceDefinition>>> for PropertyInstanceDefinition
Auto Trait Implementations§
impl Freeze for PropertyInstanceDefinition
impl RefUnwindSafe for PropertyInstanceDefinition
impl Send for PropertyInstanceDefinition
impl Sync for PropertyInstanceDefinition
impl Unpin for PropertyInstanceDefinition
impl UnwindSafe for PropertyInstanceDefinition
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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