pub struct RegistrySlot {
pub kind: GeometryKind,
pub bytes: Vec<u8>,
pub live_compound: Option<CompoundData>,
}Expand description
Resolved geometry slot for deserialization. (b3RegistrySlot)
Fields§
§kind: GeometryKind§bytes: Vec<u8>§live_compound: Option<CompoundData>Lazily converted compound (C: slot->live).
Implementations§
Source§impl RegistrySlot
impl RegistrySlot
pub fn ensure_compound(&mut self) -> Option<&CompoundData>
Trait Implementations§
Source§impl Clone for RegistrySlot
impl Clone for RegistrySlot
Source§fn clone(&self) -> RegistrySlot
fn clone(&self) -> RegistrySlot
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 moreAuto Trait Implementations§
impl Freeze for RegistrySlot
impl RefUnwindSafe for RegistrySlot
impl Send for RegistrySlot
impl Sync for RegistrySlot
impl Unpin for RegistrySlot
impl UnsafeUnpin for RegistrySlot
impl UnwindSafe for RegistrySlot
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