Struct cdp::runtime::ObjectPreview [] [src]

pub struct ObjectPreview<'a> {
    pub ty: ObjectPreviewType,
    pub subtype: Option<ObjectPreviewSubtype>,
    pub description: Option<Cow<'a, str>>,
    pub overflow: bool,
    pub properties: Vec<PropertyPreview<'a>>,
    pub entries: Option<Vec<EntryPreview<'a>>>,
}

[Experimental] Object containing abbreviated remote object value.

Fields

Object type.

Object subtype hint. Specified for object type values only.

String representation of the object.

True iff some of the properties or entries of the original object did not fit.

List of the properties.

List of the entries. Specified for map and set subtype values only.

Trait Implementations

impl<'a> Clone for ObjectPreview<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> Debug for ObjectPreview<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> PartialEq for ObjectPreview<'a>
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.