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 duplicate 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 = <u16 as datasize::DataSize>::IS_DYNAMIC
const IS_DYNAMIC: bool = <u16 as datasize::DataSize>::IS_DYNAMIC
If
true, the type has a heap size that can vary at runtime, depending on the actual value.Source§const STATIC_HEAP_SIZE: usize = <u16 as datasize::DataSize>::STATIC_HEAP_SIZE
const STATIC_HEAP_SIZE: usize = <u16 as datasize::DataSize>::STATIC_HEAP_SIZE
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§impl PartialOrd for AnnotationDataSetHandle
impl PartialOrd for AnnotationDataSetHandle
Source§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 StructuralPartialEq for AnnotationDataSetHandle
Auto Trait Implementations§
impl Freeze for AnnotationDataSetHandle
impl RefUnwindSafe for AnnotationDataSetHandle
impl Send for AnnotationDataSetHandle
impl Sync for AnnotationDataSetHandle
impl Unpin for AnnotationDataSetHandle
impl UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more