[−][src]Struct google_docs1::InsertInlineImageRequest
Inserts an InlineObject containing an image at the given location.
This type is not used in any activity, and only used as part of another schema.
Fields
object_size: Option<Size>The size that the image should appear as in the document. This property is optional and the final size of the image in the document is determined by the following rules:
- If neither width nor height is specified, then a default size of the image is calculated based on its resolution.
- If one dimension is specified then the other dimension is calculated to preserve the aspect ratio of the image.
- If both width and height are specified, the image is scaled to fit within the provided dimensions while maintaining its aspect ratio.
end_of_segment_location: Option<EndOfSegmentLocation>Inserts the text at the end of a header, footer or the document body.
Inline images cannot be inserted inside a footnote.
location: Option<Location>Inserts the image at a specific index in the document.
The image must be inserted inside the bounds of an existing Paragraph. For instance, it cannot be inserted at a table's start index (i.e. between the table and its preceding paragraph).
Inline images cannot be inserted inside a footnote or equation.
uri: Option<String>The image URI.
The image is fetched once at insertion time and a copy is stored for display inside the document. Images must be less than 50MB in size, cannot exceed 25 megapixels, and must be in one of PNG, JPEG, or GIF format.
The provided URI can be at most 2 kB in length. The URI itself is saved with the image, and exposed via the ImageProperties.content_uri field.
Trait Implementations
impl Clone for InsertInlineImageRequest[src]
fn clone(&self) -> InsertInlineImageRequest[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for InsertInlineImageRequest[src]
impl Default for InsertInlineImageRequest[src]
fn default() -> InsertInlineImageRequest[src]
impl<'de> Deserialize<'de> for InsertInlineImageRequest[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for InsertInlineImageRequest[src]
impl Serialize for InsertInlineImageRequest[src]
Auto Trait Implementations
impl RefUnwindSafe for InsertInlineImageRequest
impl Send for InsertInlineImageRequest
impl Sync for InsertInlineImageRequest
impl Unpin for InsertInlineImageRequest
impl UnwindSafe for InsertInlineImageRequest
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Typeable for T where
T: Any,
T: Any,