pub struct CustomObjectValue {
pub elements: Vec<Element>,
pub dynamic_elements: Vec<Element>,
pub class_definition: ClassDefinition,
}Expand description
Represents the contents of a Custom object
Fields§
§elements: Vec<Element>The external elements
dynamic_elements: Vec<Element>The dynamic elements
class_definition: ClassDefinitionThe ClassDefinition assigned to this Custom object
Trait Implementations§
Source§impl Clone for CustomObjectValue
impl Clone for CustomObjectValue
Source§fn clone(&self) -> CustomObjectValue
fn clone(&self) -> CustomObjectValue
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 CustomObjectValue
impl Debug for CustomObjectValue
Source§impl PartialEq for CustomObjectValue
impl PartialEq for CustomObjectValue
impl StructuralPartialEq for CustomObjectValue
Auto Trait Implementations§
impl Freeze for CustomObjectValue
impl RefUnwindSafe for CustomObjectValue
impl Send for CustomObjectValue
impl Sync for CustomObjectValue
impl Unpin for CustomObjectValue
impl UnsafeUnpin for CustomObjectValue
impl UnwindSafe for CustomObjectValue
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