[][src]Struct google_docs1::EmbeddedObject

pub struct EmbeddedObject {
    pub image_properties: Option<ImageProperties>,
    pub description: Option<String>,
    pub title: Option<String>,
    pub embedded_drawing_properties: Option<EmbeddedDrawingProperties>,
    pub margin_bottom: Option<Dimension>,
    pub embedded_object_border: Option<EmbeddedObjectBorder>,
    pub linked_content_reference: Option<LinkedContentReference>,
    pub margin_left: Option<Dimension>,
    pub margin_right: Option<Dimension>,
    pub margin_top: Option<Dimension>,
    pub size: Option<Size>,
}

An embedded object in the document.

This type is not used in any activity, and only used as part of another schema.

Fields

image_properties: Option<ImageProperties>

The properties of an image.

description: Option<String>

The description of the embedded object. The title and description are both combined to display alt text.

title: Option<String>

The title of the embedded object. The title and description are both combined to display alt text.

embedded_drawing_properties: Option<EmbeddedDrawingProperties>

The properties of an embedded drawing.

margin_bottom: Option<Dimension>

The bottom margin of the embedded object.

embedded_object_border: Option<EmbeddedObjectBorder>

The border of the embedded object.

linked_content_reference: Option<LinkedContentReference>

A reference to the external linked source content. For example, it contains a reference to the source Sheets chart when the embedded object is a linked chart.

If unset, then the embedded object is not linked.

margin_left: Option<Dimension>

The left margin of the embedded object.

margin_right: Option<Dimension>

The right margin of the embedded object.

margin_top: Option<Dimension>

The top margin of the embedded object.

size: Option<Size>

The visible size of the image after cropping.

Trait Implementations

impl Part for EmbeddedObject[src]

impl Default for EmbeddedObject[src]

impl Clone for EmbeddedObject[src]

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

Performs copy-assignment from source. Read more

impl Debug for EmbeddedObject[src]

impl Serialize for EmbeddedObject[src]

impl<'de> Deserialize<'de> for EmbeddedObject[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]