pub struct PropertyBase {
pub ignore_above: Option<u32>,
pub meta: Option<Value>,
pub properties: Option<Value>,
pub dynamic: Option<String>,
pub fields: Option<Value>,
}Fields§
§ignore_above: Option<u32>§meta: Option<Value>Metadata about the field.
properties: Option<Value>§dynamic: Option<String>§fields: Option<Value>Implementations§
Source§impl PropertyBase
impl PropertyBase
pub fn new() -> PropertyBase
Trait Implementations§
Source§impl Clone for PropertyBase
impl Clone for PropertyBase
Source§fn clone(&self) -> PropertyBase
fn clone(&self) -> PropertyBase
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 PropertyBase
impl Debug for PropertyBase
Source§impl Default for PropertyBase
impl Default for PropertyBase
Source§fn default() -> PropertyBase
fn default() -> PropertyBase
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PropertyBase
impl<'de> Deserialize<'de> for PropertyBase
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 PropertyBase
impl PartialEq for PropertyBase
Source§fn eq(&self, other: &PropertyBase) -> bool
fn eq(&self, other: &PropertyBase) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PropertyBase
impl Serialize for PropertyBase
impl StructuralPartialEq for PropertyBase
Auto Trait Implementations§
impl Freeze for PropertyBase
impl RefUnwindSafe for PropertyBase
impl Send for PropertyBase
impl Sync for PropertyBase
impl Unpin for PropertyBase
impl UnsafeUnpin for PropertyBase
impl UnwindSafe for PropertyBase
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