pub struct CandidateRepository {
pub repository_full_name: Option<String>,
pub hostname: Option<String>,
}Fields§
§repository_full_name: Option<String>The full name of the repository in owner/name format (e.g., ‘acme/backend’).
hostname: Option<String>Hostname of the Git service (e.g., ‘github.com’, ‘github.company.com’).
Trait Implementations§
Source§impl Clone for CandidateRepository
impl Clone for CandidateRepository
Source§fn clone(&self) -> CandidateRepository
fn clone(&self) -> CandidateRepository
Returns a duplicate 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 CandidateRepository
impl Debug for CandidateRepository
Source§impl Default for CandidateRepository
impl Default for CandidateRepository
Source§fn default() -> CandidateRepository
fn default() -> CandidateRepository
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CandidateRepository
impl<'de> Deserialize<'de> for CandidateRepository
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 CandidateRepository
impl RefUnwindSafe for CandidateRepository
impl Send for CandidateRepository
impl Sync for CandidateRepository
impl Unpin for CandidateRepository
impl UnwindSafe for CandidateRepository
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