pub struct PortableEntitySection {
pub name: String,
pub fields: Vec<PortableFieldTypeInfo>,
pub is_nested_struct: bool,
pub parent_field: Option<String>,
}Fields§
§name: String§fields: Vec<PortableFieldTypeInfo>§is_nested_struct: bool§parent_field: Option<String>Trait Implementations§
Source§impl Clone for PortableEntitySection
impl Clone for PortableEntitySection
Source§fn clone(&self) -> PortableEntitySection
fn clone(&self) -> PortableEntitySection
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 PortableEntitySection
impl Debug for PortableEntitySection
Source§impl<'de> Deserialize<'de> for PortableEntitySection
impl<'de> Deserialize<'de> for PortableEntitySection
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 PortableEntitySection
impl PartialEq for PortableEntitySection
Source§impl Serialize for PortableEntitySection
impl Serialize for PortableEntitySection
impl StructuralPartialEq for PortableEntitySection
Auto Trait Implementations§
impl Freeze for PortableEntitySection
impl RefUnwindSafe for PortableEntitySection
impl Send for PortableEntitySection
impl Sync for PortableEntitySection
impl Unpin for PortableEntitySection
impl UnsafeUnpin for PortableEntitySection
impl UnwindSafe for PortableEntitySection
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