pub struct ObjectSchema {
pub name: String,
pub fields: Vec<ObjectField>,
pub size: u64,
pub align: u64,
}Expand description
Object schema (struct layout) referenced by a component.
Fields§
§name: String§fields: Vec<ObjectField>§size: u64§align: u64Trait Implementations§
Source§impl Clone for ObjectSchema
impl Clone for ObjectSchema
Source§fn clone(&self) -> ObjectSchema
fn clone(&self) -> ObjectSchema
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 ObjectSchema
impl Debug for ObjectSchema
Source§impl<'de> Deserialize<'de> for ObjectSchema
impl<'de> Deserialize<'de> for ObjectSchema
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
impl Eq for ObjectSchema
Source§impl PartialEq for ObjectSchema
impl PartialEq for ObjectSchema
Source§fn eq(&self, other: &ObjectSchema) -> bool
fn eq(&self, other: &ObjectSchema) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ObjectSchema
impl Serialize for ObjectSchema
impl StructuralPartialEq for ObjectSchema
Auto Trait Implementations§
impl Freeze for ObjectSchema
impl RefUnwindSafe for ObjectSchema
impl Send for ObjectSchema
impl Sync for ObjectSchema
impl Unpin for ObjectSchema
impl UnsafeUnpin for ObjectSchema
impl UnwindSafe for ObjectSchema
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