pub struct SnapshotTenant {
pub tenant_id: TenantId,
pub name: String,
pub created_at: u64,
}Expand description
Snapshot representation of a tenant.
Fields§
§tenant_id: TenantId§name: String§created_at: u64Trait Implementations§
Source§impl Clone for SnapshotTenant
impl Clone for SnapshotTenant
Source§fn clone(&self) -> SnapshotTenant
fn clone(&self) -> SnapshotTenant
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 Debug for SnapshotTenant
impl Debug for SnapshotTenant
Source§impl<'de> Deserialize<'de> for SnapshotTenant
impl<'de> Deserialize<'de> for SnapshotTenant
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SnapshotTenant
impl PartialEq for SnapshotTenant
Source§impl Serialize for SnapshotTenant
impl Serialize for SnapshotTenant
impl Eq for SnapshotTenant
impl StructuralPartialEq for SnapshotTenant
Auto Trait Implementations§
impl Freeze for SnapshotTenant
impl RefUnwindSafe for SnapshotTenant
impl Send for SnapshotTenant
impl Sync for SnapshotTenant
impl Unpin for SnapshotTenant
impl UnsafeUnpin for SnapshotTenant
impl UnwindSafe for SnapshotTenant
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