#[repr(u8)]pub enum RadioChannel {
Pit = 0,
Download = 1,
}
Variants§
Pit = 0
Used when controlling the robot outside of a competition match.
Download = 1
Used when wirelessly uploading or downloading data to/from the V5 Brain.
Higher radio bandwidth for file transfer purposes.
Trait Implementations§
Source§impl Clone for RadioChannel
impl Clone for RadioChannel
Source§fn clone(&self) -> RadioChannel
fn clone(&self) -> RadioChannel
Returns a duplicate 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 RadioChannel
impl Debug for RadioChannel
Source§impl PartialEq for RadioChannel
impl PartialEq for RadioChannel
impl Copy for RadioChannel
impl Eq for RadioChannel
impl StructuralPartialEq for RadioChannel
Auto Trait Implementations§
impl Freeze for RadioChannel
impl RefUnwindSafe for RadioChannel
impl Send for RadioChannel
impl Sync for RadioChannel
impl Unpin for RadioChannel
impl UnwindSafe for RadioChannel
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