[][src]Struct gcp_client::google::cloud::videointelligence::v1p3beta1::StreamingStorageConfig

pub struct StreamingStorageConfig {
    pub enable_storage_annotation_result: bool,
    pub annotation_result_storage_directory: String,
}

Config for streaming storage option.

Fields

enable_storage_annotation_result: bool

Enable streaming storage. Default: false.

annotation_result_storage_directory: String

GCS URI to store all annotation results for one client. Client should specify this field as the top-level storage directory. Annotation results of different sessions will be put into different sub-directories denoted by project_name and session_id. All sub-directories will be auto generated by program and will be made accessible to client in response proto. URIs must be specified in the following format: gs://bucket-id/object-id bucket-id should be a valid GCS bucket created by client and bucket permission shall also be configured properly. object-id can be arbitrary string that make sense to client. Other URI formats will return error and cause GCS write failure.

Trait Implementations

impl Clone for StreamingStorageConfig[src]

impl Debug for StreamingStorageConfig[src]

impl Default for StreamingStorageConfig[src]

impl Message for StreamingStorageConfig[src]

impl PartialEq<StreamingStorageConfig> for StreamingStorageConfig[src]

impl StructuralPartialEq for StreamingStorageConfig[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> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]