Struct aws_sdk_codebuild::model::SourceAuth
source · [−]#[non_exhaustive]pub struct SourceAuth { /* private fields */ }
Expand description
Information about the authorization settings for CodeBuild to access the source code to be built.
This information is for the CodeBuild console's use only. Your code should not get or set this information directly.
Implementations
sourceimpl SourceAuth
impl SourceAuth
sourcepub fn type(&self) -> Option<&SourceAuthType>
pub fn type(&self) -> Option<&SourceAuthType>
This data type is deprecated and is no longer accurate or used.
The authorization type to use. The only valid value is OAUTH
, which represents the OAuth authorization type.
sourceimpl SourceAuth
impl SourceAuth
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SourceAuth
.
Trait Implementations
sourceimpl Clone for SourceAuth
impl Clone for SourceAuth
sourcefn clone(&self) -> SourceAuth
fn clone(&self) -> SourceAuth
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for SourceAuth
impl Debug for SourceAuth
sourceimpl PartialEq<SourceAuth> for SourceAuth
impl PartialEq<SourceAuth> for SourceAuth
sourcefn eq(&self, other: &SourceAuth) -> bool
fn eq(&self, other: &SourceAuth) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &SourceAuth) -> bool
fn ne(&self, other: &SourceAuth) -> bool
This method tests for !=
.
impl StructuralPartialEq for SourceAuth
Auto Trait Implementations
impl RefUnwindSafe for SourceAuth
impl Send for SourceAuth
impl Sync for SourceAuth
impl Unpin for SourceAuth
impl UnwindSafe for SourceAuth
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more