Function protobuf::reflect::accessor::make_repeated_field_accessor [] [src]

pub fn make_repeated_field_accessor<M, V>(
    name: &'static str,
    get_vec: fn<'a>(_: &'a M) -> &'a RepeatedField<V::Value>,
    mut_vec: fn<'a>(_: &'a mut M) -> &'a mut RepeatedField<V::Value>
) -> Box<FieldAccessor + 'static> where
    M: Message + 'static,
    V: ProtobufType + 'static,