Struct garage_model::bucket_table::Bucket[][src]

pub struct Bucket {
    pub name: String,
    pub state: LWW<BucketState>,
}

A bucket is a collection of objects

Its parameters are not directly accessible as:

  • It must be possible to merge paramaters, hence the use of a LWW CRDT.
  • A bucket has 2 states, Present or Deleted and parameters make sense only if present.

Fields

name: Stringstate: LWW<BucketState>

Implementations

impl Bucket[src]

pub fn new(name: String) -> Self[src]

pub fn is_deleted(&self) -> bool[src]

pub fn authorized_keys(&self) -> &[(String, u64, PermissionSet)][src]

Trait Implementations

impl CRDT for Bucket[src]

impl Clone for Bucket[src]

impl Debug for Bucket[src]

impl<'de> Deserialize<'de> for Bucket[src]

impl Entry<EmptyKey, String> for Bucket[src]

impl PartialEq<Bucket> for Bucket[src]

impl Serialize for Bucket[src]

impl StructuralPartialEq for Bucket[src]

Auto Trait Implementations

impl RefUnwindSafe for Bucket

impl Send for Bucket

impl Sync for Bucket

impl Unpin for Bucket

impl UnwindSafe for Bucket

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,