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

pub struct MergeVariantsRequest {
    pub variant_set_id: String,
    pub variants: Vec<Variant>,
    pub info_merge_config: HashMap<String, i32>,
}

Fields

variant_set_id: String

The destination variant set.

variants: Vec<Variant>

The variants to be merged with existing variants.

info_merge_config: HashMap<String, i32>

A mapping between info field keys and the InfoMergeOperations to be performed on them.

Implementations

impl MergeVariantsRequest[src]

pub fn get_info_merge_config(&self, key: &str) -> Option<InfoMergeOperation>[src]

Returns the enum value for the corresponding key in info_merge_config, or None if the entry does not exist or it is not a valid enum value.

pub fn insert_info_merge_config(
    &mut self,
    key: String,
    value: InfoMergeOperation
) -> Option<InfoMergeOperation>
[src]

Inserts a key value pair into info_merge_config.

Trait Implementations

impl Clone for MergeVariantsRequest[src]

impl Debug for MergeVariantsRequest[src]

impl Default for MergeVariantsRequest[src]

impl Message for MergeVariantsRequest[src]

impl PartialEq<MergeVariantsRequest> for MergeVariantsRequest[src]

impl StructuralPartialEq for MergeVariantsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for MergeVariantsRequest

impl Send for MergeVariantsRequest

impl Sync for MergeVariantsRequest

impl Unpin for MergeVariantsRequest

impl UnwindSafe for MergeVariantsRequest

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]