Struct chrome_remote_interface_model::runtime::PropertyPreviewBuilder[][src]

pub struct PropertyPreviewBuilder { /* fields omitted */ }

Implementations

impl PropertyPreviewBuilder[src]

pub fn name(&mut self, v: String) -> &mut Self[src]

Property name.

pub fn type(&mut self, v: PropertyPreviewType) -> &mut Self[src]

Object type. Accessor means that the property itself is an accessor property.

pub fn value(&mut self, v: String) -> &mut Self[src]

User-friendly property value string.

pub fn value_preview(&mut self, v: JsonValue) -> &mut Self[src]

Nested value preview.

pub fn subtype(&mut self, v: PropertyPreviewSubtype) -> &mut Self[src]

Object subtype hint. Specified for object type values only.

pub fn build(&mut self) -> Result<PropertyPreview, &'static str>[src]

Trait Implementations

impl Clone for PropertyPreviewBuilder[src]

impl Debug for PropertyPreviewBuilder[src]

impl Default for PropertyPreviewBuilder[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.