#[non_exhaustive]pub struct GetCommentInputBuilder { /* private fields */ }Expand description
A builder for GetCommentInput.
Implementations§
source§impl GetCommentInputBuilder
impl GetCommentInputBuilder
sourcepub fn comment_id(self, input: impl Into<String>) -> Self
pub fn comment_id(self, input: impl Into<String>) -> Self
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
sourcepub fn set_comment_id(self, input: Option<String>) -> Self
pub fn set_comment_id(self, input: Option<String>) -> Self
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
sourcepub fn get_comment_id(&self) -> &Option<String>
pub fn get_comment_id(&self) -> &Option<String>
The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
sourcepub fn build(self) -> Result<GetCommentInput, BuildError>
pub fn build(self) -> Result<GetCommentInput, BuildError>
Consumes the builder and constructs a GetCommentInput.
source§impl GetCommentInputBuilder
impl GetCommentInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetCommentOutput, SdkError<GetCommentError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetCommentOutput, SdkError<GetCommentError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetCommentInputBuilder
impl Clone for GetCommentInputBuilder
source§fn clone(&self) -> GetCommentInputBuilder
fn clone(&self) -> GetCommentInputBuilder
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 GetCommentInputBuilder
impl Debug for GetCommentInputBuilder
source§impl Default for GetCommentInputBuilder
impl Default for GetCommentInputBuilder
source§fn default() -> GetCommentInputBuilder
fn default() -> GetCommentInputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetCommentInputBuilder
impl PartialEq for GetCommentInputBuilder
source§fn eq(&self, other: &GetCommentInputBuilder) -> bool
fn eq(&self, other: &GetCommentInputBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetCommentInputBuilder
Auto Trait Implementations§
impl Freeze for GetCommentInputBuilder
impl RefUnwindSafe for GetCommentInputBuilder
impl Send for GetCommentInputBuilder
impl Sync for GetCommentInputBuilder
impl Unpin for GetCommentInputBuilder
impl UnwindSafe for GetCommentInputBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.