Struct stam::AnnotationDataSetHandle
source · pub struct AnnotationDataSetHandle(/* private fields */);Trait Implementations§
source§impl Clone for AnnotationDataSetHandle
impl Clone for AnnotationDataSetHandle
source§fn clone(&self) -> AnnotationDataSetHandle
fn clone(&self) -> AnnotationDataSetHandle
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl DataSize for AnnotationDataSetHandle
impl DataSize for AnnotationDataSetHandle
source§const IS_DYNAMIC: bool = false
const IS_DYNAMIC: bool = false
If
true, the type has a heap size that can vary at runtime, depending on the actual value.source§const STATIC_HEAP_SIZE: usize = 0usize
const STATIC_HEAP_SIZE: usize = 0usize
The amount of space a value of the type always occupies. If
IS_DYNAMIC is false, this is
the total amount of heap memory occupied by the value. Otherwise this is a lower bound.source§fn estimate_heap_size(&self) -> usize
fn estimate_heap_size(&self) -> usize
Estimates the size of heap memory taken up by this value. Read more
source§impl Debug for AnnotationDataSetHandle
impl Debug for AnnotationDataSetHandle
source§impl<'bytes, Ctx> Decode<'bytes, Ctx> for AnnotationDataSetHandle
impl<'bytes, Ctx> Decode<'bytes, Ctx> for AnnotationDataSetHandle
source§impl<Ctx> Encode<Ctx> for AnnotationDataSetHandle
impl<Ctx> Encode<Ctx> for AnnotationDataSetHandle
source§impl From<&AnnotationDataSetHandle> for BuildItem<'_, AnnotationDataSet>
impl From<&AnnotationDataSetHandle> for BuildItem<'_, AnnotationDataSet>
source§fn from(handle: &AnnotationDataSetHandle) -> Self
fn from(handle: &AnnotationDataSetHandle) -> Self
Converts to this type from the input type.
source§impl From<AnnotationDataSetHandle> for BuildItem<'_, AnnotationDataSet>
impl From<AnnotationDataSetHandle> for BuildItem<'_, AnnotationDataSet>
source§fn from(handle: AnnotationDataSetHandle) -> Self
fn from(handle: AnnotationDataSetHandle) -> Self
Converts to this type from the input type.
source§impl Handle for AnnotationDataSetHandle
impl Handle for AnnotationDataSetHandle
source§impl Hash for AnnotationDataSetHandle
impl Hash for AnnotationDataSetHandle
source§impl Ord for AnnotationDataSetHandle
impl Ord for AnnotationDataSetHandle
source§fn cmp(&self, other: &AnnotationDataSetHandle) -> Ordering
fn cmp(&self, other: &AnnotationDataSetHandle) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
source§impl PartialEq for AnnotationDataSetHandle
impl PartialEq for AnnotationDataSetHandle
source§fn eq(&self, other: &AnnotationDataSetHandle) -> bool
fn eq(&self, other: &AnnotationDataSetHandle) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl PartialOrd for AnnotationDataSetHandle
impl PartialOrd for AnnotationDataSetHandle
source§fn partial_cmp(&self, other: &AnnotationDataSetHandle) -> Option<Ordering>
fn partial_cmp(&self, other: &AnnotationDataSetHandle) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self and other) and is used by the <=
operator. Read moresource§impl<'a> Request<AnnotationDataSet> for AnnotationDataSetHandle
impl<'a> Request<AnnotationDataSet> for AnnotationDataSetHandle
source§fn to_handle<'store, S>(
&self,
_store: &'store S
) -> Option<AnnotationDataSetHandle>where
S: StoreFor<AnnotationDataSet>,
fn to_handle<'store, S>(
&self,
_store: &'store S
) -> Option<AnnotationDataSetHandle>where
S: StoreFor<AnnotationDataSet>,
Returns the handle for this item, looking it up in the store
source§fn requested_id(&self) -> Option<&str>
fn requested_id(&self) -> Option<&str>
If this type encapsulates an Id, this returns it (borrowed)
source§fn requested_id_owned(self) -> Option<String>
fn requested_id_owned(self) -> Option<String>
If this type encapsulates an Id, this returns it (oened)
source§fn requested_handle(&self) -> Option<T::HandleType>
fn requested_handle(&self) -> Option<T::HandleType>
If this type encapsulates a handle, this returns it
impl Copy for AnnotationDataSetHandle
impl Eq for AnnotationDataSetHandle
impl StructuralEq for AnnotationDataSetHandle
impl StructuralPartialEq for AnnotationDataSetHandle
Auto Trait Implementations§
impl RefUnwindSafe for AnnotationDataSetHandle
impl Send for AnnotationDataSetHandle
impl Sync for AnnotationDataSetHandle
impl Unpin for AnnotationDataSetHandle
impl UnwindSafe for AnnotationDataSetHandle
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