pub struct Volumeannotation {Show 14 fields
pub annotation_data_id: Option<String>,
pub annotation_data_link: Option<String>,
pub annotation_type: Option<String>,
pub content_ranges: Option<VolumeannotationContentRanges>,
pub data: Option<String>,
pub deleted: Option<bool>,
pub id: Option<String>,
pub kind: Option<String>,
pub layer_id: Option<String>,
pub page_ids: Option<Vec<String>>,
pub selected_text: Option<String>,
pub self_link: Option<String>,
pub updated: Option<String>,
pub volume_id: Option<String>,
}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).
- volume annotations get layers (response)
Fields§
§annotation_data_id: Option<String>The annotation data id for this volume annotation.
annotation_data_link: Option<String>Link to get data for this annotation.
annotation_type: Option<String>The type of annotation this is.
content_ranges: Option<VolumeannotationContentRanges>The content ranges to identify the selected text.
data: Option<String>Data for this annotation.
deleted: Option<bool>Indicates that this annotation is deleted.
id: Option<String>Unique id of this volume annotation.
kind: Option<String>Resource Type
layer_id: Option<String>The Layer this annotation is for.
page_ids: Option<Vec<String>>Pages the annotation spans.
selected_text: Option<String>Excerpt from the volume.
self_link: Option<String>URL to this resource.
updated: Option<String>Timestamp for the last time this anntoation was updated. (RFC 3339 UTC date-time format).
volume_id: Option<String>The Volume this annotation is for.
Trait Implementations§
Source§impl Clone for Volumeannotation
impl Clone for Volumeannotation
Source§fn clone(&self) -> Volumeannotation
fn clone(&self) -> Volumeannotation
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for Volumeannotation
impl Debug for Volumeannotation
Source§impl Default for Volumeannotation
impl Default for Volumeannotation
Source§fn default() -> Volumeannotation
fn default() -> Volumeannotation
Source§impl<'de> Deserialize<'de> for Volumeannotation
impl<'de> Deserialize<'de> for Volumeannotation
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>,
Source§impl Serialize for Volumeannotation
impl Serialize for Volumeannotation
impl ResponseResult for Volumeannotation
Auto Trait Implementations§
impl Freeze for Volumeannotation
impl RefUnwindSafe for Volumeannotation
impl Send for Volumeannotation
impl Sync for Volumeannotation
impl Unpin for Volumeannotation
impl UnwindSafe for Volumeannotation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more