pub enum WireOps {
Entry(WireEntryOps),
Record(WireRecordOps),
Warrant(Box<WarrantOp>),
}Expand description
Condensed version of ops for sending across the wire.
Variants§
Entry(WireEntryOps)
Response for get entry.
Record(WireRecordOps)
Response for get record.
Warrant(Box<WarrantOp>)
A warrant in place of data in the case that the data is invalid. There is no “wire” version because this is about as compact as it gets.
Implementations§
Source§impl WireOps
impl WireOps
Sourcepub fn render(self) -> DhtOpResult<RenderedOps>
pub fn render(self) -> DhtOpResult<RenderedOps>
Render the wire ops to DhtOps.
Sourcepub fn warrants(&self) -> &[SignedWarrant] ⓘ
pub fn warrants(&self) -> &[SignedWarrant] ⓘ
The warrants accompanying this response, proving any Rejected records
served. Empty for the standalone-warrant variant.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for WireOps
impl<'de> Deserialize<'de> for WireOps
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for WireOps
impl StructuralPartialEq for WireOps
Source§impl TryFrom<&WireOps> for SerializedBytes
impl TryFrom<&WireOps> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: &WireOps) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &WireOps) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<SerializedBytes> for WireOps
impl TryFrom<SerializedBytes> for WireOps
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(sb: SerializedBytes) -> Result<WireOps, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<WireOps, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<WireOps> for SerializedBytes
impl TryFrom<WireOps> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: WireOps) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: WireOps) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WireOps
impl RefUnwindSafe for WireOps
impl Send for WireOps
impl Sync for WireOps
impl Unpin for WireOps
impl UnsafeUnpin for WireOps
impl UnwindSafe for WireOps
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more