pub struct ListLayersResponse {
pub layers: Option<Vec<LayersListItem>>,
pub next_marker: Option<String>,
}
Fields§
§layers: Option<Vec<LayersListItem>>
A list of function layers.
next_marker: Option<String>
A pagination token returned when the response doesn't contain all layers.
Trait Implementations§
Source§impl Clone for ListLayersResponse
impl Clone for ListLayersResponse
Source§fn clone(&self) -> ListLayersResponse
fn clone(&self) -> ListLayersResponse
Returns a duplicate 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 ListLayersResponse
impl Debug for ListLayersResponse
Source§impl Default for ListLayersResponse
impl Default for ListLayersResponse
Source§fn default() -> ListLayersResponse
fn default() -> ListLayersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ListLayersResponse
impl<'de> Deserialize<'de> for ListLayersResponse
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 ListLayersResponse
impl PartialEq for ListLayersResponse
impl StructuralPartialEq for ListLayersResponse
Auto Trait Implementations§
impl Freeze for ListLayersResponse
impl RefUnwindSafe for ListLayersResponse
impl Send for ListLayersResponse
impl Sync for ListLayersResponse
impl Unpin for ListLayersResponse
impl UnwindSafe for ListLayersResponse
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