[][src]Struct google_docs1::InsertInlineImageRequest

pub struct InsertInlineImageRequest {
    pub object_size: Option<Size>,
    pub end_of_segment_location: Option<EndOfSegmentLocation>,
    pub location: Option<Location>,
    pub uri: Option<String>,
}

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 Part for InsertInlineImageRequest[src]

impl Default for InsertInlineImageRequest[src]

impl Clone for InsertInlineImageRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for InsertInlineImageRequest[src]

impl Serialize for InsertInlineImageRequest[src]

impl<'de> Deserialize<'de> for InsertInlineImageRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]