pub struct StorageCapability { /* private fields */ }
Expand description
A storage capability, which may be routed between components. Created by
Capability::storage
.
Implementations§
source§impl StorageCapability
impl StorageCapability
sourcepub fn as_(self, as_: impl Into<String>) -> Self
pub fn as_(self, as_: impl Into<String>) -> Self
The name the targets will see the storage capability as.
sourcepub fn path(self, path: impl Into<String>) -> Self
pub fn path(self, path: impl Into<String>) -> Self
The path at which this storage will be used. Only relevant if the route’s target is a local component.
sourcepub fn optional(self) -> Self
pub fn optional(self) -> Self
Marks the availability of this capability as “optional”, which allows either this or a
parent offer to have a source of void
.
sourcepub fn availability_same_as_target(self) -> Self
pub fn availability_same_as_target(self) -> Self
Marks the availability of this capability to be the same as the availability expectations set in the target.
Trait Implementations§
source§impl Clone for StorageCapability
impl Clone for StorageCapability
source§fn clone(&self) -> StorageCapability
fn clone(&self) -> StorageCapability
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 Debug for StorageCapability
impl Debug for StorageCapability
source§impl Into<Capability> for StorageCapability
impl Into<Capability> for StorageCapability
source§fn into(self) -> Capability
fn into(self) -> Capability
Converts this type into the (usually inferred) input type.
source§impl PartialEq for StorageCapability
impl PartialEq for StorageCapability
source§fn eq(&self, other: &StorageCapability) -> bool
fn eq(&self, other: &StorageCapability) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for StorageCapability
Auto Trait Implementations§
impl Freeze for StorageCapability
impl RefUnwindSafe for StorageCapability
impl Send for StorageCapability
impl Sync for StorageCapability
impl Unpin for StorageCapability
impl UnwindSafe for StorageCapability
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
)