Struct gapi_grpc::google::genomics::v1::BatchCreateAnnotationsRequest[][src]

pub struct BatchCreateAnnotationsRequest {
    pub annotations: Vec<Annotation>,
    pub request_id: String,
}

Fields

annotations: Vec<Annotation>
[]

The annotations to be created. At most 4096 can be specified in a single request.

request_id: String
[]

A unique request ID which enables the server to detect duplicated requests. If provided, duplicated requests will result in the same response; if not provided, duplicated requests may result in duplicated data. For a given annotation set, callers should not reuse request_ids when writing different batches of annotations - behavior in this case is undefined. A common approach is to use a UUID. For batch jobs where worker crashes are a possibility, consider using some unique variant of a worker or run ID.

Trait Implementations

impl Clone for BatchCreateAnnotationsRequest[src][+]

impl Debug for BatchCreateAnnotationsRequest[src][+]

impl Default for BatchCreateAnnotationsRequest[src][+]

impl Message for BatchCreateAnnotationsRequest[src][+]

impl PartialEq<BatchCreateAnnotationsRequest> for BatchCreateAnnotationsRequest[src][+]

impl StructuralPartialEq for BatchCreateAnnotationsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for BatchCreateAnnotationsRequest

impl Send for BatchCreateAnnotationsRequest

impl Sync for BatchCreateAnnotationsRequest

impl Unpin for BatchCreateAnnotationsRequest

impl UnwindSafe for BatchCreateAnnotationsRequest

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> 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>, 
[src][+]

impl<T> WithSubscriber for T[src][+]