pub struct Repo {
pub name: String,
pub path: String,
pub private: Option<bool>,
pub url: String,
pub git: String,
pub description: Option<String>,
}Expand description
§Repo (repository)
Represents a repository for any platform it contains varios properties that are shared across all the repositories.
Fields§
§name: String§path: String§private: Option<bool>§url: String§git: String§description: Option<String>Implementations§
Auto Trait Implementations§
impl Freeze for Repo
impl RefUnwindSafe for Repo
impl Send for Repo
impl Sync for Repo
impl Unpin for Repo
impl UnwindSafe for Repo
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