pub struct BrigadierNumber<T> {
pub min: Option<T>,
pub max: Option<T>,
}
Fields§
§min: Option<T>
§max: Option<T>
Implementations§
Source§impl<T> BrigadierNumber<T>
impl<T> BrigadierNumber<T>
pub fn new(min: Option<T>, max: Option<T>) -> BrigadierNumber<T>
Trait Implementations§
Source§impl<T: Clone> Clone for BrigadierNumber<T>
impl<T: Clone> Clone for BrigadierNumber<T>
Source§fn clone(&self) -> BrigadierNumber<T>
fn clone(&self) -> BrigadierNumber<T>
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<T: Debug> Debug for BrigadierNumber<T>
impl<T: Debug> Debug for BrigadierNumber<T>
Source§impl<T: McBufReadable> McBufReadable for BrigadierNumber<T>
impl<T: McBufReadable> McBufReadable for BrigadierNumber<T>
Source§impl<T: McBufWritable> McBufWritable for BrigadierNumber<T>
impl<T: McBufWritable> McBufWritable for BrigadierNumber<T>
Source§impl<T: PartialEq> PartialEq for BrigadierNumber<T>
impl<T: PartialEq> PartialEq for BrigadierNumber<T>
impl<T: Eq> Eq for BrigadierNumber<T>
Auto Trait Implementations§
impl<T> Freeze for BrigadierNumber<T>where
T: Freeze,
impl<T> RefUnwindSafe for BrigadierNumber<T>where
T: RefUnwindSafe,
impl<T> Send for BrigadierNumber<T>where
T: Send,
impl<T> Sync for BrigadierNumber<T>where
T: Sync,
impl<T> Unpin for BrigadierNumber<T>where
T: Unpin,
impl<T> UnwindSafe for BrigadierNumber<T>where
T: UnwindSafe,
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,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Forward to the method defined on the type
Any
.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Forward to the method defined on the type
Any
.§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
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
.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.§fn 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.§fn 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.§impl<T> DowncastSync for T
impl<T> DowncastSync for T
§impl<T> DynEq for T
impl<T> DynEq for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.