pub struct GitHubConnectionRepoModel {
pub error_message: Option<String>,
pub git_hub_repository_url: Option<String>,
}Expand description
Describes Github connection’s repo.
Fields§
§error_message: Option<String>Error message
git_hub_repository_url: Option<String>Repository web url
Implementations§
Trait Implementations§
Source§impl Clone for GitHubConnectionRepoModel
impl Clone for GitHubConnectionRepoModel
Source§fn clone(&self) -> GitHubConnectionRepoModel
fn clone(&self) -> GitHubConnectionRepoModel
Returns a copy of the value. Read more
1.0.0 · 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 GitHubConnectionRepoModel
impl Debug for GitHubConnectionRepoModel
Source§impl Default for GitHubConnectionRepoModel
impl Default for GitHubConnectionRepoModel
Source§fn default() -> GitHubConnectionRepoModel
fn default() -> GitHubConnectionRepoModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GitHubConnectionRepoModel
impl<'de> Deserialize<'de> for GitHubConnectionRepoModel
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
impl StructuralPartialEq for GitHubConnectionRepoModel
Auto Trait Implementations§
impl Freeze for GitHubConnectionRepoModel
impl RefUnwindSafe for GitHubConnectionRepoModel
impl Send for GitHubConnectionRepoModel
impl Sync for GitHubConnectionRepoModel
impl Unpin for GitHubConnectionRepoModel
impl UnwindSafe for GitHubConnectionRepoModel
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