#[non_exhaustive]pub struct DownloadDbLogFilePortionOutput {
pub log_file_data: Option<String>,
pub marker: Option<String>,
pub additional_data_pending: Option<bool>,
/* private fields */
}Expand description
This data type is used as a response element to DownloadDBLogFilePortion.
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.log_file_data: Option<String>Entries from the specified log file.
marker: Option<String>A pagination token that can be used in a later DownloadDBLogFilePortion request.
additional_data_pending: Option<bool>A Boolean value that, if true, indicates there is more data to be downloaded.
Implementations§
source§impl DownloadDbLogFilePortionOutput
impl DownloadDbLogFilePortionOutput
sourcepub fn log_file_data(&self) -> Option<&str>
pub fn log_file_data(&self) -> Option<&str>
Entries from the specified log file.
sourcepub fn marker(&self) -> Option<&str>
pub fn marker(&self) -> Option<&str>
A pagination token that can be used in a later DownloadDBLogFilePortion request.
sourcepub fn additional_data_pending(&self) -> Option<bool>
pub fn additional_data_pending(&self) -> Option<bool>
A Boolean value that, if true, indicates there is more data to be downloaded.
source§impl DownloadDbLogFilePortionOutput
impl DownloadDbLogFilePortionOutput
sourcepub fn builder() -> DownloadDbLogFilePortionOutputBuilder
pub fn builder() -> DownloadDbLogFilePortionOutputBuilder
Creates a new builder-style object to manufacture DownloadDbLogFilePortionOutput.
Trait Implementations§
source§impl Clone for DownloadDbLogFilePortionOutput
impl Clone for DownloadDbLogFilePortionOutput
source§fn clone(&self) -> DownloadDbLogFilePortionOutput
fn clone(&self) -> DownloadDbLogFilePortionOutput
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 PartialEq for DownloadDbLogFilePortionOutput
impl PartialEq for DownloadDbLogFilePortionOutput
source§fn eq(&self, other: &DownloadDbLogFilePortionOutput) -> bool
fn eq(&self, other: &DownloadDbLogFilePortionOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for DownloadDbLogFilePortionOutput
impl RequestId for DownloadDbLogFilePortionOutput
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 DownloadDbLogFilePortionOutput
Auto Trait Implementations§
impl RefUnwindSafe for DownloadDbLogFilePortionOutput
impl Send for DownloadDbLogFilePortionOutput
impl Sync for DownloadDbLogFilePortionOutput
impl Unpin for DownloadDbLogFilePortionOutput
impl UnwindSafe for DownloadDbLogFilePortionOutput
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.