pub struct SpecHierarchy {
pub identifier: String,
pub last_change: String,
pub object: Object,
pub children: Option<Children>,
}
Fields§
§identifier: String
§last_change: String
§object: Object
§children: Option<Children>
Implementations§
Trait Implementations§
Source§impl Debug for SpecHierarchy
impl Debug for SpecHierarchy
Source§impl PartialEq for SpecHierarchy
impl PartialEq for SpecHierarchy
Source§impl YaSerialize for SpecHierarchy
impl YaSerialize for SpecHierarchy
fn serialize<W: Write>(&self, writer: &mut Serializer<W>) -> Result<(), String>
fn serialize_attributes( &self, source_attributes: Vec<OwnedAttribute>, source_namespace: Namespace, ) -> Result<(Vec<OwnedAttribute>, Namespace), String>
impl StructuralPartialEq for SpecHierarchy
Auto Trait Implementations§
impl Freeze for SpecHierarchy
impl RefUnwindSafe for SpecHierarchy
impl Send for SpecHierarchy
impl Sync for SpecHierarchy
impl Unpin for SpecHierarchy
impl UnwindSafe for SpecHierarchy
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