pub struct UbuntuRepositoryEntry {
pub package: Option<String>,
pub version: Option<String>,
pub filename: Option<String>,
pub size: Option<usize>,
pub installed_size: Option<usize>,
pub depends: Option<String>,
pub section: Option<String>,
pub source: Option<String>,
pub md5sum: Option<String>,
pub sha1: Option<String>,
pub sha256: Option<String>,
pub sha512: Option<String>,
}Fields§
§package: Option<String>§version: Option<String>§filename: Option<String>§size: Option<usize>§installed_size: Option<usize>§depends: Option<String>§section: Option<String>§source: Option<String>§md5sum: Option<String>§sha1: Option<String>§sha256: Option<String>§sha512: Option<String>Trait Implementations§
Source§impl Debug for UbuntuRepositoryEntry
impl Debug for UbuntuRepositoryEntry
Source§impl Default for UbuntuRepositoryEntry
impl Default for UbuntuRepositoryEntry
Source§fn default() -> UbuntuRepositoryEntry
fn default() -> UbuntuRepositoryEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for UbuntuRepositoryEntry
impl RefUnwindSafe for UbuntuRepositoryEntry
impl Send for UbuntuRepositoryEntry
impl Sync for UbuntuRepositoryEntry
impl Unpin for UbuntuRepositoryEntry
impl UnwindSafe for UbuntuRepositoryEntry
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