Struct grpc_etcd::rpc::PutRequest
[−]
[src]
pub struct PutRequest {
pub key: Vec<u8>,
pub value: Vec<u8>,
pub lease: i64,
pub prev_kv: bool,
pub ignore_value: bool,
pub ignore_lease: bool,
// some fields omitted
}Fields
key: Vec<u8>
value: Vec<u8>
lease: i64
prev_kv: bool
ignore_value: bool
ignore_lease: bool
Methods
impl PutRequest[src]
fn new() -> PutRequest
fn default_instance() -> &'static PutRequest
fn clear_key(&mut self)
fn set_key(&mut self, v: Vec<u8>)
fn mut_key(&mut self) -> &mut Vec<u8>
fn take_key(&mut self) -> Vec<u8>
fn get_key(&self) -> &[u8]
fn clear_value(&mut self)
fn set_value(&mut self, v: Vec<u8>)
fn mut_value(&mut self) -> &mut Vec<u8>
fn take_value(&mut self) -> Vec<u8>
fn get_value(&self) -> &[u8]
fn clear_lease(&mut self)
fn set_lease(&mut self, v: i64)
fn get_lease(&self) -> i64
fn clear_prev_kv(&mut self)
fn set_prev_kv(&mut self, v: bool)
fn get_prev_kv(&self) -> bool
fn clear_ignore_value(&mut self)
fn set_ignore_value(&mut self, v: bool)
fn get_ignore_value(&self) -> bool
fn clear_ignore_lease(&mut self)
fn set_ignore_lease(&mut self, v: bool)
fn get_ignore_lease(&self) -> bool
Trait Implementations
impl PartialEq for PutRequest[src]
fn eq(&self, __arg_0: &PutRequest) -> bool
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &PutRequest) -> bool
This method tests for !=.
impl Clone for PutRequest[src]
fn clone(&self) -> PutRequest
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for PutRequest[src]
fn default() -> PutRequest
Returns the "default value" for a type. Read more
impl Sync for PutRequest[src]
impl Message for PutRequest[src]
fn is_initialized(&self) -> bool
fn merge_from(&mut self, is: &mut CodedInputStream) -> ProtobufResult<()>
fn compute_size(&self) -> u32
fn write_to_with_cached_sizes(
&self,
os: &mut CodedOutputStream
) -> ProtobufResult<()>
&self,
os: &mut CodedOutputStream
) -> ProtobufResult<()>
fn get_cached_size(&self) -> u32
fn get_unknown_fields(&self) -> &UnknownFields
fn mut_unknown_fields(&mut self) -> &mut UnknownFields
fn as_any(&self) -> &Any
fn as_any_mut(&mut self) -> &mut Any
fn into_any(self: Box<Self>) -> Box<Any>
fn descriptor(&self) -> &'static MessageDescriptor
fn write_to(&self, os: &mut CodedOutputStream) -> Result<(), ProtobufError>
fn write_length_delimited_to(
&self,
os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
&self,
os: &mut CodedOutputStream
) -> Result<(), ProtobufError>
fn write_length_delimited_to_vec(
&self,
vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
&self,
vec: &mut Vec<u8>
) -> Result<(), ProtobufError>
fn merge_from_bytes(&mut self, bytes: &[u8]) -> Result<(), ProtobufError>
fn check_initialized(&self) -> Result<(), ProtobufError>
fn write_to_writer(&self, w: &mut Write) -> Result<(), ProtobufError>
fn write_to_vec(&self, v: &mut Vec<u8>) -> Result<(), ProtobufError>
fn write_to_bytes(&self) -> Result<Vec<u8>, ProtobufError>
fn write_length_delimited_to_writer(
&self,
w: &mut Write
) -> Result<(), ProtobufError>
&self,
w: &mut Write
) -> Result<(), ProtobufError>