pub enum LinkType {
Manager,
Worker,
}
Expand description
The type of radio link being established.
VEXLink is a point-to-point connection, with one “manager” robot and one “worker” robot.
Variants§
Manager
Manager Radio
This end of the link has a 1040-bytes/sec data rate when communicating with a worker radio.
Worker
Worker Radio
This end of the link has a 520-bytes/sec data rate when communicating with a manager radio.
Trait Implementations§
impl Copy for LinkType
impl Eq for LinkType
impl StructuralPartialEq for LinkType
Auto Trait Implementations§
impl Freeze for LinkType
impl RefUnwindSafe for LinkType
impl Send for LinkType
impl Sync for LinkType
impl Unpin for LinkType
impl UnwindSafe for LinkType
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