pub struct SdrRepositoryInfo {
pub version_major: u8,
pub version_minor: u8,
pub record_count: u16,
pub free_space: FreeSpace,
pub most_recent_addition: Timestamp,
pub most_recent_erase: Timestamp,
pub overflow: bool,
pub supported_ops: Vec<Operation>,
}Fields§
§version_major: u8§version_minor: u8§record_count: u16§free_space: FreeSpace§most_recent_addition: Timestamp§most_recent_erase: Timestamp§overflow: bool§supported_ops: Vec<Operation>Implementations§
Trait Implementations§
Source§impl Clone for RepositoryInfo
impl Clone for RepositoryInfo
Source§fn clone(&self) -> RepositoryInfo
fn clone(&self) -> RepositoryInfo
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 RepositoryInfo
impl Debug for RepositoryInfo
Auto Trait Implementations§
impl Freeze for RepositoryInfo
impl RefUnwindSafe for RepositoryInfo
impl Send for RepositoryInfo
impl Sync for RepositoryInfo
impl Unpin for RepositoryInfo
impl UnwindSafe for RepositoryInfo
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