pub struct ValueConstructorIntrospection {
pub key: String,
pub path: Vec<String>,
pub type_name: String,
pub input_type: TypeView,
pub output_type: TypeView,
}Fields§
§key: String§path: Vec<String>§type_name: String§input_type: TypeView§output_type: TypeViewTrait Implementations§
Source§impl Clone for ValueConstructorIntrospection
impl Clone for ValueConstructorIntrospection
Source§fn clone(&self) -> ValueConstructorIntrospection
fn clone(&self) -> ValueConstructorIntrospection
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<'de> Deserialize<'de> for ValueConstructorIntrospection
impl<'de> Deserialize<'de> for ValueConstructorIntrospection
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 ValueConstructorIntrospection
impl PartialEq for ValueConstructorIntrospection
Source§fn eq(&self, other: &ValueConstructorIntrospection) -> bool
fn eq(&self, other: &ValueConstructorIntrospection) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ValueConstructorIntrospection
Auto Trait Implementations§
impl Freeze for ValueConstructorIntrospection
impl RefUnwindSafe for ValueConstructorIntrospection
impl Send for ValueConstructorIntrospection
impl Sync for ValueConstructorIntrospection
impl Unpin for ValueConstructorIntrospection
impl UnsafeUnpin for ValueConstructorIntrospection
impl UnwindSafe for ValueConstructorIntrospection
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