pub struct Repository {
pub header: Option<RepositoryHeaderV2>,
pub name: Option<String>,
pub url: Option<String>,
pub base_url: Option<String>,
pub vendor: Option<String>,
pub summary: Option<String>,
pub priority: Option<i32>,
pub architecture: Option<String>,
pub license_name: Option<String>,
pub license_text: Option<String>,
}
Fields§
§header: Option<RepositoryHeaderV2>
§name: Option<String>
§url: Option<String>
§base_url: Option<String>
§vendor: Option<String>
§summary: Option<String>
§priority: Option<i32>
§architecture: Option<String>
§license_name: Option<String>
§license_text: Option<String>
Implementations§
Source§impl Repository
impl Repository
Trait Implementations§
Source§impl Clone for Repository
impl Clone for Repository
Source§fn clone(&self) -> Repository
fn clone(&self) -> Repository
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for Repository
impl Debug for Repository
Auto Trait Implementations§
impl Freeze for Repository
impl RefUnwindSafe for Repository
impl Send for Repository
impl Sync for Repository
impl Unpin for Repository
impl UnwindSafe for Repository
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