Struct aws_sdk_codecommit::model::BlobMetadata [−][src]
#[non_exhaustive]pub struct BlobMetadata {
pub blob_id: Option<String>,
pub path: Option<String>,
pub mode: Option<String>,
}Expand description
Returns information about a specific Git blob object.
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.blob_id: Option<String>The full ID of the blob.
path: Option<String>The path to the blob and associated file name, if any.
mode: Option<String>The file mode permissions of the blob. File mode permission codes include:
-
100644indicates read/write -
100755indicates read/write/execute -
160000indicates a submodule -
120000indicates a symlink
Implementations
Creates a new builder-style object to manufacture BlobMetadata
Trait Implementations
This method tests for self and other values to be equal, and is used
by ==. Read more
This method tests for !=.
Auto Trait Implementations
impl RefUnwindSafe for BlobMetadata
impl Send for BlobMetadata
impl Sync for BlobMetadata
impl Unpin for BlobMetadata
impl UnwindSafe for BlobMetadata
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more