pub struct KeyExprUndeclaration<'a> { /* private fields */ }
Expand description
A Resolvable
returned when undeclaring a KeyExpr
.
§Examples
let session = zenoh::open(zenoh::Config::default()).await.unwrap();
let key_expr = session.declare_keyexpr("key/expression").await.unwrap();
session.undeclare(key_expr).await.unwrap();
Trait Implementations§
Source§impl IntoFuture for KeyExprUndeclaration<'_>
impl IntoFuture for KeyExprUndeclaration<'_>
Source§type Output = <KeyExprUndeclaration<'_> as Resolvable>::To
type Output = <KeyExprUndeclaration<'_> as Resolvable>::To
The output that the future will produce on completion.
Source§type IntoFuture = Ready<<KeyExprUndeclaration<'_> as Resolvable>::To>
type IntoFuture = Ready<<KeyExprUndeclaration<'_> as Resolvable>::To>
Which kind of future are we turning this into?
Source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Source§impl Resolvable for KeyExprUndeclaration<'_>
impl Resolvable for KeyExprUndeclaration<'_>
Source§impl Wait for KeyExprUndeclaration<'_>
impl Wait for KeyExprUndeclaration<'_>
Source§fn wait(self) -> <Self as Resolvable>::To
fn wait(self) -> <Self as Resolvable>::To
Synchronously execute and wait
Auto Trait Implementations§
impl<'a> Freeze for KeyExprUndeclaration<'a>
impl<'a> !RefUnwindSafe for KeyExprUndeclaration<'a>
impl<'a> Send for KeyExprUndeclaration<'a>
impl<'a> Sync for KeyExprUndeclaration<'a>
impl<'a> Unpin for KeyExprUndeclaration<'a>
impl<'a> !UnwindSafe for KeyExprUndeclaration<'a>
Blanket Implementations§
Source§impl<Source> AccessAs for Source
impl<Source> AccessAs for Source
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> 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