Struct aws_sdk_codecommit::operation::delete_file::DeleteFileOutput
source · #[non_exhaustive]pub struct DeleteFileOutput {
pub commit_id: String,
pub blob_id: String,
pub tree_id: String,
pub file_path: String,
/* private fields */
}
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.commit_id: String
The full commit ID of the commit that contains the change that deletes the file.
blob_id: String
The blob ID removed from the tree as part of deleting the file.
tree_id: String
The full SHA-1 pointer of the tree information for the commit that contains the delete file change.
file_path: String
The fully qualified path to the file to be deleted, including the full name and extension of that file.
Implementations§
source§impl DeleteFileOutput
impl DeleteFileOutput
source§impl DeleteFileOutput
impl DeleteFileOutput
sourcepub fn builder() -> DeleteFileOutputBuilder
pub fn builder() -> DeleteFileOutputBuilder
Creates a new builder-style object to manufacture DeleteFileOutput
.
Trait Implementations§
source§impl Clone for DeleteFileOutput
impl Clone for DeleteFileOutput
source§fn clone(&self) -> DeleteFileOutput
fn clone(&self) -> DeleteFileOutput
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 DeleteFileOutput
impl Debug for DeleteFileOutput
source§impl PartialEq for DeleteFileOutput
impl PartialEq for DeleteFileOutput
source§fn eq(&self, other: &DeleteFileOutput) -> bool
fn eq(&self, other: &DeleteFileOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteFileOutput
impl RequestId for DeleteFileOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DeleteFileOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteFileOutput
impl Send for DeleteFileOutput
impl Sync for DeleteFileOutput
impl Unpin for DeleteFileOutput
impl UnwindSafe for DeleteFileOutput
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>
Creates a shared type from an unshared type.