pub struct PortableResolvedField {
pub field_name: String,
pub raw_name: Option<String>,
pub canonical_name: Option<String>,
pub field_type: String,
pub base_type: PortableBaseType,
pub integer_kind: Option<PortableIntegerKind>,
pub is_optional: bool,
pub is_array: bool,
}Fields§
§field_name: String§raw_name: Option<String>§canonical_name: Option<String>§field_type: String§base_type: PortableBaseType§integer_kind: Option<PortableIntegerKind>§is_optional: bool§is_array: boolTrait Implementations§
Source§impl Clone for PortableResolvedField
impl Clone for PortableResolvedField
Source§fn clone(&self) -> PortableResolvedField
fn clone(&self) -> PortableResolvedField
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 PortableResolvedField
impl Debug for PortableResolvedField
Source§impl<'de> Deserialize<'de> for PortableResolvedField
impl<'de> Deserialize<'de> for PortableResolvedField
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 PortableResolvedField
impl PartialEq for PortableResolvedField
Source§impl Serialize for PortableResolvedField
impl Serialize for PortableResolvedField
impl StructuralPartialEq for PortableResolvedField
Auto Trait Implementations§
impl Freeze for PortableResolvedField
impl RefUnwindSafe for PortableResolvedField
impl Send for PortableResolvedField
impl Sync for PortableResolvedField
impl Unpin for PortableResolvedField
impl UnsafeUnpin for PortableResolvedField
impl UnwindSafe for PortableResolvedField
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