pub struct DescribeObjectsOutput {
pub has_more_results: Option<bool>,
pub marker: Option<String>,
pub pipeline_objects: Vec<PipelineObject>,
}
Expand description
Contains the output of DescribeObjects.
Fields§
§has_more_results: Option<bool>
Indicates whether there are more results to return.
marker: Option<String>
The starting point for the next page of results. To view the next page of results, call DescribeObjects
again with this marker value. If the value is null, there are no more results.
pipeline_objects: Vec<PipelineObject>
An array of object definitions.
Trait Implementations§
Source§impl Clone for DescribeObjectsOutput
impl Clone for DescribeObjectsOutput
Source§fn clone(&self) -> DescribeObjectsOutput
fn clone(&self) -> DescribeObjectsOutput
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 DescribeObjectsOutput
impl Debug for DescribeObjectsOutput
Source§impl Default for DescribeObjectsOutput
impl Default for DescribeObjectsOutput
Source§fn default() -> DescribeObjectsOutput
fn default() -> DescribeObjectsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeObjectsOutput
impl<'de> Deserialize<'de> for DescribeObjectsOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeObjectsOutput
impl PartialEq for DescribeObjectsOutput
impl StructuralPartialEq for DescribeObjectsOutput
Auto Trait Implementations§
impl Freeze for DescribeObjectsOutput
impl RefUnwindSafe for DescribeObjectsOutput
impl Send for DescribeObjectsOutput
impl Sync for DescribeObjectsOutput
impl Unpin for DescribeObjectsOutput
impl UnwindSafe for DescribeObjectsOutput
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