Struct kvproto::deadlock::DeadlockResponse[][src]

pub struct DeadlockResponse {
    pub entry: SingularPtrField<WaitForEntry>,
    pub deadlock_key_hash: u64,
    pub wait_chain: RepeatedField<WaitForEntry>,
    pub unknown_fields: UnknownFields,
    pub cached_size: CachedSize,
}

Fields

entry: SingularPtrField<WaitForEntry>deadlock_key_hash: u64wait_chain: RepeatedField<WaitForEntry>unknown_fields: UnknownFieldscached_size: CachedSize

Implementations

impl DeadlockResponse[src]

pub fn new() -> DeadlockResponse[src]

pub fn get_entry(&self) -> &WaitForEntry[src]

pub fn clear_entry(&mut self)[src]

pub fn has_entry(&self) -> bool[src]

pub fn set_entry(&mut self, v: WaitForEntry)[src]

pub fn mut_entry(&mut self) -> &mut WaitForEntry[src]

pub fn take_entry(&mut self) -> WaitForEntry[src]

pub fn get_deadlock_key_hash(&self) -> u64[src]

pub fn clear_deadlock_key_hash(&mut self)[src]

pub fn set_deadlock_key_hash(&mut self, v: u64)[src]

pub fn get_wait_chain(&self) -> &[WaitForEntry][src]

pub fn clear_wait_chain(&mut self)[src]

pub fn set_wait_chain(&mut self, v: RepeatedField<WaitForEntry>)[src]

pub fn mut_wait_chain(&mut self) -> &mut RepeatedField<WaitForEntry>[src]

pub fn take_wait_chain(&mut self) -> RepeatedField<WaitForEntry>[src]

Trait Implementations

impl Clear for DeadlockResponse[src]

impl Clone for DeadlockResponse[src]

impl Debug for DeadlockResponse[src]

impl Default for DeadlockResponse[src]

impl<'a> Default for &'a DeadlockResponse[src]

impl Message for DeadlockResponse[src]

impl PartialEq<DeadlockResponse> for DeadlockResponse[src]

impl PbPrint for DeadlockResponse[src]

impl ProtobufValue for DeadlockResponse[src]

impl StructuralPartialEq for DeadlockResponse[src]

Auto Trait Implementations

impl RefUnwindSafe for DeadlockResponse

impl Send for DeadlockResponse

impl Sync for DeadlockResponse

impl Unpin for DeadlockResponse

impl UnwindSafe for DeadlockResponse

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, U> Into<U> for T where
    U: From<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.