Enum wl_clipboard_rs::copy::ServeRequests
source · [−]pub enum ServeRequests {
Unlimited,
Only(usize),
}
Expand description
Number of paste requests to serve.
Variants
Unlimited
Serve requests indefinitely.
Only(usize)
Serve only the given number of requests.
Trait Implementations
sourceimpl Clone for ServeRequests
impl Clone for ServeRequests
sourcefn clone(&self) -> ServeRequests
fn clone(&self) -> ServeRequests
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for ServeRequests
impl Debug for ServeRequests
sourceimpl Default for ServeRequests
impl Default for ServeRequests
sourceimpl Hash for ServeRequests
impl Hash for ServeRequests
sourceimpl Ord for ServeRequests
impl Ord for ServeRequests
sourcefn cmp(&self, other: &ServeRequests) -> Ordering
fn cmp(&self, other: &ServeRequests) -> Ordering
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl PartialEq<ServeRequests> for ServeRequests
impl PartialEq<ServeRequests> for ServeRequests
sourcefn eq(&self, other: &ServeRequests) -> bool
fn eq(&self, other: &ServeRequests) -> bool
sourceimpl PartialOrd<ServeRequests> for ServeRequests
impl PartialOrd<ServeRequests> for ServeRequests
sourcefn partial_cmp(&self, other: &ServeRequests) -> Option<Ordering>
fn partial_cmp(&self, other: &ServeRequests) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for ServeRequests
impl Eq for ServeRequests
impl StructuralEq for ServeRequests
impl StructuralPartialEq for ServeRequests
Auto Trait Implementations
impl RefUnwindSafe for ServeRequests
impl Send for ServeRequests
impl Sync for ServeRequests
impl Unpin for ServeRequests
impl UnwindSafe for ServeRequests
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
. Read morefn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
. Read morefn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s. Read morefn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s. Read moresourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.