pub enum QueryServiceInfoResult {
Ok(SerializedValue),
InvalidService,
}
Variants§
Ok(SerializedValue)
InvalidService
Implementations§
Source§impl QueryServiceInfoResult
impl QueryServiceInfoResult
pub fn ok_with_serialize_info(info: ServiceInfo) -> Result<Self, SerializeError>
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for QueryServiceInfoResult
impl<'arbitrary> Arbitrary<'arbitrary> for QueryServiceInfoResult
Source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the given unstructured data. Read moreSource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self
from the entirety of the given
unstructured data. Read moreSource§impl Clone for QueryServiceInfoResult
impl Clone for QueryServiceInfoResult
Source§fn clone(&self) -> QueryServiceInfoResult
fn clone(&self) -> QueryServiceInfoResult
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for QueryServiceInfoResult
impl Debug for QueryServiceInfoResult
Source§impl PartialEq for QueryServiceInfoResult
impl PartialEq for QueryServiceInfoResult
impl Eq for QueryServiceInfoResult
impl StructuralPartialEq for QueryServiceInfoResult
Auto Trait Implementations§
impl Freeze for QueryServiceInfoResult
impl RefUnwindSafe for QueryServiceInfoResult
impl Send for QueryServiceInfoResult
impl Sync for QueryServiceInfoResult
impl Unpin for QueryServiceInfoResult
impl UnwindSafe for QueryServiceInfoResult
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