pub struct Annotationsdata {
pub items: Option<Vec<GeoAnnotationdata>>,
pub kind: Option<String>,
pub next_page_token: Option<String>,
pub total_items: Option<i32>,
}Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- annotation data list layers (response)
Fields§
§items: Option<Vec<GeoAnnotationdata>>A list of Annotation Data.
kind: Option<String>Resource type
next_page_token: Option<String>Token to pass in for pagination for the next page. This will not be present if this request does not have more results.
total_items: Option<i32>The total number of volume annotations found.
Trait Implementations§
Source§impl Clone for Annotationsdata
impl Clone for Annotationsdata
Source§fn clone(&self) -> Annotationsdata
fn clone(&self) -> Annotationsdata
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 Annotationsdata
impl Debug for Annotationsdata
Source§impl Default for Annotationsdata
impl Default for Annotationsdata
Source§fn default() -> Annotationsdata
fn default() -> Annotationsdata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Annotationsdata
impl<'de> Deserialize<'de> for Annotationsdata
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 Serialize for Annotationsdata
impl Serialize for Annotationsdata
impl ResponseResult for Annotationsdata
Auto Trait Implementations§
impl Freeze for Annotationsdata
impl RefUnwindSafe for Annotationsdata
impl Send for Annotationsdata
impl Sync for Annotationsdata
impl Unpin for Annotationsdata
impl UnwindSafe for Annotationsdata
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