pub struct LayerResponse {
pub meta: ResponseMeta,
pub parameter: LayerParameterEcho,
pub next_position: Option<u32>,
pub series: Vec<LayerSeries>,
pub raw: String,
}Expand description
Decoded response model for getDataLayer.
Fields§
§meta: ResponseMetaResponse metadata.
parameter: LayerParameterEchoEchoed request parameters.
next_position: Option<u32>Pagination cursor for subsequent calls, when available.
series: Vec<LayerSeries>Returned series entries.
raw: StringRaw decoded text body preserved for diagnostics.
Trait Implementations§
Source§impl Clone for LayerResponse
impl Clone for LayerResponse
Source§fn clone(&self) -> LayerResponse
fn clone(&self) -> LayerResponse
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 LayerResponse
impl Debug for LayerResponse
Source§impl<'de> Deserialize<'de> for LayerResponse
impl<'de> Deserialize<'de> for LayerResponse
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 LayerResponse
impl PartialEq for LayerResponse
Source§impl Serialize for LayerResponse
impl Serialize for LayerResponse
impl Eq for LayerResponse
impl StructuralPartialEq for LayerResponse
Auto Trait Implementations§
impl Freeze for LayerResponse
impl RefUnwindSafe for LayerResponse
impl Send for LayerResponse
impl Sync for LayerResponse
impl Unpin for LayerResponse
impl UnsafeUnpin for LayerResponse
impl UnwindSafe for LayerResponse
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