#[non_exhaustive]pub struct UpdateServiceSyncConfigInput {
pub service_name: Option<String>,
pub repository_provider: Option<RepositoryProvider>,
pub repository_name: Option<String>,
pub branch: Option<String>,
pub file_path: Option<String>,
}
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.service_name: Option<String>
The name of the service the Proton Ops file is for.
repository_provider: Option<RepositoryProvider>
The name of the repository provider where the Proton Ops file is found.
repository_name: Option<String>
The name of the repository where the Proton Ops file is found.
branch: Option<String>
The name of the code repository branch where the Proton Ops file is found.
file_path: Option<String>
The path to the Proton Ops file.
Implementations§
source§impl UpdateServiceSyncConfigInput
impl UpdateServiceSyncConfigInput
sourcepub fn service_name(&self) -> Option<&str>
pub fn service_name(&self) -> Option<&str>
The name of the service the Proton Ops file is for.
sourcepub fn repository_provider(&self) -> Option<&RepositoryProvider>
pub fn repository_provider(&self) -> Option<&RepositoryProvider>
The name of the repository provider where the Proton Ops file is found.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository where the Proton Ops file is found.
source§impl UpdateServiceSyncConfigInput
impl UpdateServiceSyncConfigInput
sourcepub fn builder() -> UpdateServiceSyncConfigInputBuilder
pub fn builder() -> UpdateServiceSyncConfigInputBuilder
Creates a new builder-style object to manufacture UpdateServiceSyncConfigInput
.
Trait Implementations§
source§impl Clone for UpdateServiceSyncConfigInput
impl Clone for UpdateServiceSyncConfigInput
source§fn clone(&self) -> UpdateServiceSyncConfigInput
fn clone(&self) -> UpdateServiceSyncConfigInput
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 UpdateServiceSyncConfigInput
impl Debug for UpdateServiceSyncConfigInput
source§impl PartialEq for UpdateServiceSyncConfigInput
impl PartialEq for UpdateServiceSyncConfigInput
source§fn eq(&self, other: &UpdateServiceSyncConfigInput) -> bool
fn eq(&self, other: &UpdateServiceSyncConfigInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateServiceSyncConfigInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateServiceSyncConfigInput
impl Send for UpdateServiceSyncConfigInput
impl Sync for UpdateServiceSyncConfigInput
impl Unpin for UpdateServiceSyncConfigInput
impl UnwindSafe for UpdateServiceSyncConfigInput
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