pub struct GithubProject {
pub name: String,
pub full_name: String,
pub clone_url: String,
pub ssh_url: String,
pub private: bool,
}
Fields§
§name: String
§full_name: String
§clone_url: String
§ssh_url: String
§private: bool
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GithubProject
impl<'de> Deserialize<'de> for GithubProject
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
Source§impl Project for GithubProject
impl Project for GithubProject
fn name(&self) -> ProjectName
fn namespace(&self) -> Option<ProjectNamespace>
fn ssh_url(&self) -> RemoteUrl
fn http_url(&self) -> RemoteUrl
fn private(&self) -> bool
fn into_repo_config(
self,
remote_name: &RemoteName,
worktree_setup: bool,
force_ssh: bool,
) -> Repowhere
Self: Sized,
Auto Trait Implementations§
impl Freeze for GithubProject
impl RefUnwindSafe for GithubProject
impl Send for GithubProject
impl Sync for GithubProject
impl Unpin for GithubProject
impl UnwindSafe for GithubProject
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