#[repr(u32)]pub enum StorageId {
StaticInstanceId = 1,
StaticInstanceIdOrMoniker = 2,
}
Expand description
Declares which identifier to use to key a component’s isolated storage directory.
Variants§
StaticInstanceId = 1
Isolated storage directories are keyed using a component’s instance ID specified in the component ID index. Components which are not listed in the index cannot use or open this storage capability.
StaticInstanceIdOrMoniker = 2
Isolated storage directories are keyed using a component’s instance ID if one is specified in the component ID index. Otherwise, a component’s moniker from the storage capability is used to key its isolated storage directory.
Implementations§
source§impl StorageId
impl StorageId
pub fn from_primitive(prim: u32) -> Option<Self>
pub const fn into_primitive(self) -> u32
pub fn is_unknown(&self) -> bool
👎Deprecated: Strict enums should not use
is_unknown
Trait Implementations§
source§impl<D: ResourceDialect> Decode<StorageId, D> for StorageId
impl<D: ResourceDialect> Decode<StorageId, D> for StorageId
source§impl Ord for StorageId
impl Ord for StorageId
source§impl PartialEq for StorageId
impl PartialEq for StorageId
source§impl PartialOrd for StorageId
impl PartialOrd for StorageId
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 TypeMarker for StorageId
impl TypeMarker for StorageId
source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Returns the minimum required alignment of the inline portion of the
encoded object. It must be a (nonzero) power of two.
source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
Returns the size of the inline portion of the encoded object, including
padding for alignment. Must be a multiple of
inline_align
.source§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read moresource§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Returns true if the memory layout of
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.source§impl ValueTypeMarker for StorageId
impl ValueTypeMarker for StorageId
impl Copy for StorageId
impl Eq for StorageId
impl StructuralPartialEq for StorageId
Auto Trait Implementations§
impl Freeze for StorageId
impl RefUnwindSafe for StorageId
impl Send for StorageId
impl Sync for StorageId
impl Unpin for StorageId
impl UnwindSafe for StorageId
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)