pub struct RepositoryNameIdPair {
pub repository_id: Option<String>,
pub repository_name: Option<String>,
}Expand description
Information about a repository name and ID.
Fields§
§repository_id: Option<String>The ID associated with the repository.
repository_name: Option<String>The name associated with the repository.
Trait Implementations§
Source§impl Clone for RepositoryNameIdPair
impl Clone for RepositoryNameIdPair
Source§fn clone(&self) -> RepositoryNameIdPair
fn clone(&self) -> RepositoryNameIdPair
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 RepositoryNameIdPair
impl Debug for RepositoryNameIdPair
Source§impl Default for RepositoryNameIdPair
impl Default for RepositoryNameIdPair
Source§fn default() -> RepositoryNameIdPair
fn default() -> RepositoryNameIdPair
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepositoryNameIdPair
impl<'de> Deserialize<'de> for RepositoryNameIdPair
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 PartialEq for RepositoryNameIdPair
impl PartialEq for RepositoryNameIdPair
impl StructuralPartialEq for RepositoryNameIdPair
Auto Trait Implementations§
impl Freeze for RepositoryNameIdPair
impl RefUnwindSafe for RepositoryNameIdPair
impl Send for RepositoryNameIdPair
impl Sync for RepositoryNameIdPair
impl Unpin for RepositoryNameIdPair
impl UnwindSafe for RepositoryNameIdPair
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