pub struct RemoteRepo {
pub name: String,
pub description: Option<String>,
pub visibility: Visibility,
pub default_branch: String,
pub url: String,
pub ssh_url: String,
pub clone_url: String,
}Expand description
Remote repository information
Fields§
§name: String§description: Option<String>§visibility: Visibility§default_branch: String§url: String§ssh_url: String§clone_url: StringTrait Implementations§
Source§impl Clone for RemoteRepo
impl Clone for RemoteRepo
Source§fn clone(&self) -> RemoteRepo
fn clone(&self) -> RemoteRepo
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 RemoteRepo
impl Debug for RemoteRepo
Source§impl<'de> Deserialize<'de> for RemoteRepo
impl<'de> Deserialize<'de> for RemoteRepo
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
Auto Trait Implementations§
impl Freeze for RemoteRepo
impl RefUnwindSafe for RemoteRepo
impl Send for RemoteRepo
impl Sync for RemoteRepo
impl Unpin for RemoteRepo
impl UnsafeUnpin for RemoteRepo
impl UnwindSafe for RemoteRepo
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