pub enum ByondTopicValue {
None,
String(String),
Number(f32),
}
Expand description
This enum represents the possible return types of send_byond It can be nothing, a String (containing String), or a Number (containing f32)
Variants§
Auto Trait Implementations§
impl Freeze for ByondTopicValue
impl RefUnwindSafe for ByondTopicValue
impl Send for ByondTopicValue
impl Sync for ByondTopicValue
impl Unpin for ByondTopicValue
impl UnwindSafe for ByondTopicValue
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