pub struct CloneableLayer(/* private fields */);
Expand description

CloneableLayer allows itself to be cloned. This is useful when a type that implements Clone wishes to store a config layer.

It ensures that all the items in CloneableLayer are Clone upon entry, e.g. when they are first stored, the mutable methods require that they have a Clone bound on them.

While FrozenLayer is also cloneable, which is a shallow clone via Arc, CloneableLayer performs a deep clone that newly allocates all the items stored in it.

Cloneable enforces that non clone items cannot be added

use aws_smithy_types::config_bag::Storable;
use aws_smithy_types::config_bag::StoreReplace;
use aws_smithy_types::config_bag::CloneableLayer;
#[derive(Debug)]
struct MyNotCloneStruct;

impl Storable for MyNotCloneStruct {
    type Storer = StoreReplace<MyNotCloneStruct>;
}
let mut layer = CloneableLayer::new("layer");
layer.store_put(MyNotCloneStruct);

See the module docs for more documentation.

Implementations§

source§

impl CloneableLayer

source

pub fn new(name: impl Into<Cow<'static, str>>) -> Self

Creates a new CloneableLayer with a given name

source

pub fn freeze(self) -> FrozenLayer

Converts this layer into a frozen layer that can no longer be mutated.

source

pub fn unset<T: Send + Sync + Clone + Debug + 'static>(&mut self) -> &mut Self

Removes T from this bag

source

pub fn store_put<T>(&mut self, item: T) -> &mut Self
where T: Storable<Storer = StoreReplace<T>> + Clone,

Stores item of type T into the config bag, overriding a previous value of the same type

source

pub fn store_or_unset<T>(&mut self, item: Option<T>) -> &mut Self
where T: Storable<Storer = StoreReplace<T>> + Clone,

Stores item of type T into the config bag, overriding a previous value of the same type, or unsets it by passing a None

source

pub fn store_append<T>(&mut self, item: T) -> &mut Self
where T: Storable<Storer = StoreAppend<T>> + Clone,

Stores item of type T into the config bag, appending it to the existing list of the same type

source

pub fn clear<T>(&mut self)
where T: Storable<Storer = StoreAppend<T>> + Clone,

Clears the value of type T from the config bag

Methods from Deref<Target = Layer>§

source

pub fn is_empty(&self) -> bool

Returns true if this layer is empty.

source

pub fn load<T: Storable>(&self) -> <T::Storer as Store>::ReturnedType<'_>

Load a storable item from the bag

Trait Implementations§

source§

impl Clone for CloneableLayer

source§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CloneableLayer

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for CloneableLayer

source§

fn default() -> CloneableLayer

Returns the “default value” for a type. Read more
source§

impl Deref for CloneableLayer

§

type Target = Layer

The resulting type after dereferencing.
source§

fn deref(&self) -> &Self::Target

Dereferences the value.
source§

impl From<CloneableLayer> for Layer

source§

fn from(cloneable_layer: CloneableLayer) -> Layer

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.