[−][src]Struct etcd_client::Permission
Role access permission.
Implementations
impl Permission[src]
pub fn new(perm_type: PermissionType, key: impl Into<Vec<u8>>) -> Self[src]
Creates a permission with operation type and key
pub fn read(key: impl Into<Vec<u8>>) -> Self[src]
Creates a read permission with key
pub fn write(key: impl Into<Vec<u8>>) -> Self[src]
Creates a write permission with key
pub fn read_write(key: impl Into<Vec<u8>>) -> Self[src]
Creates a read write permission with key
pub fn with_range_end(mut self: Self, range_end: impl Into<Vec<u8>>) -> Self[src]
Sets range end for the permission
pub fn with_from_key(mut self: Self) -> Self[src]
Sets the permission with all keys >= key.
pub fn with_prefix(mut self: Self) -> Self[src]
Sets the permission with all keys prefixed with key.
pub fn with_all_keys(mut self: Self) -> Self[src]
Sets the permission with all keys.
pub fn key(&self) -> &[u8][src]
The key in bytes. An empty key is not allowed.
pub fn range_end(&self) -> &[u8][src]
The range end in bytes. maybe empty
pub fn key_str(&self) -> Result<&str, Error>[src]
The key in string. An empty key is not allowed.
pub unsafe fn key_str_unchecked(&self) -> &str[src]
The key in string. An empty key is not allowed.
Safety
This function is unsafe because it does not check that the bytes of the key are valid UTF-8.
If this constraint is violated, undefined behavior results,
as the rest of Rust assumes that &strs are valid UTF-8.
pub fn range_end_str(&self) -> Result<&str, Error>[src]
The range end in string.
pub unsafe fn range_end_str_unchecked(&self) -> &str[src]
The range end in string.
Safety
This function is unsafe because it does not check that the bytes of the key are valid UTF-8.
If this constraint is violated, undefined behavior results,
as the rest of Rust assumes that &strs are valid UTF-8.
pub const fn get_type(&self) -> i32[src]
Gets the operation type of permission.
pub const fn is_from_key(&self) -> bool[src]
Indicates whether permission is with keys >= key.
pub const fn is_prefix(&self) -> bool[src]
Indicates whether permission is with all keys prefixed with key.
Trait Implementations
impl Clone for Permission[src]
pub fn clone(&self) -> Permission[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for Permission[src]
impl PartialEq<Permission> for Permission[src]
Auto Trait Implementations
impl RefUnwindSafe for Permission[src]
impl Send for Permission[src]
impl Sync for Permission[src]
impl Unpin for Permission[src]
impl UnwindSafe for Permission[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> IntoRequest<T> for T[src]
pub fn into_request(self) -> Request<T>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> WithSubscriber for T[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>, [src]
S: Into<Dispatch>,