pub struct VolumeInfo {
pub name: String,
pub size_bytes: u64,
}Expand description
A persistent volume as seen by an operator listing (GET /api/compute/volumes
/ boatramp compute volume ls): the volume name (which backs the on-node
directory <data_dir>/compute/volumes/<name>) and its total on-disk size in
bytes. Whether the volume is still referenced by a registered workload’s spec
(in use vs orphaned) is decided one layer up, by ComputeVolumes, not by the
backend, which only sees the on-disk directories.
Fields§
§name: StringThe volume name (the single path component under .../compute/volumes/).
size_bytes: u64The volume’s total on-disk size in bytes (summed recursively).
Trait Implementations§
Source§impl Clone for VolumeInfo
impl Clone for VolumeInfo
Source§fn clone(&self) -> VolumeInfo
fn clone(&self) -> VolumeInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 VolumeInfo
impl Debug for VolumeInfo
Source§impl<'de> Deserialize<'de> for VolumeInfo
impl<'de> Deserialize<'de> for VolumeInfo
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
impl Eq for VolumeInfo
Source§impl PartialEq for VolumeInfo
impl PartialEq for VolumeInfo
Source§impl Serialize for VolumeInfo
impl Serialize for VolumeInfo
impl StructuralPartialEq for VolumeInfo
Auto Trait Implementations§
impl Freeze for VolumeInfo
impl RefUnwindSafe for VolumeInfo
impl Send for VolumeInfo
impl Sync for VolumeInfo
impl Unpin for VolumeInfo
impl UnsafeUnpin for VolumeInfo
impl UnwindSafe for VolumeInfo
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.