#[non_exhaustive]pub struct ProjectRepoId {
pub project_id: String,
pub repo_name: String,
/* private fields */
}Expand description
Selects a repo using a Google Cloud Platform project ID (e.g., winged-cargo-31) and a repo name within that project.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project_id: StringThe ID of the project.
repo_name: StringThe name of the repo. Leave empty for the default repo.
Implementations§
Source§impl ProjectRepoId
impl ProjectRepoId
Trait Implementations§
Source§impl Clone for ProjectRepoId
impl Clone for ProjectRepoId
Source§fn clone(&self) -> ProjectRepoId
fn clone(&self) -> ProjectRepoId
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 ProjectRepoId
impl Debug for ProjectRepoId
Source§impl Default for ProjectRepoId
impl Default for ProjectRepoId
Source§fn default() -> ProjectRepoId
fn default() -> ProjectRepoId
Returns the “default value” for a type. Read more
Source§impl Message for ProjectRepoId
impl Message for ProjectRepoId
Source§impl PartialEq for ProjectRepoId
impl PartialEq for ProjectRepoId
impl StructuralPartialEq for ProjectRepoId
Auto Trait Implementations§
impl Freeze for ProjectRepoId
impl RefUnwindSafe for ProjectRepoId
impl Send for ProjectRepoId
impl Sync for ProjectRepoId
impl Unpin for ProjectRepoId
impl UnsafeUnpin for ProjectRepoId
impl UnwindSafe for ProjectRepoId
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