struct Local {
usb_terminal: SerialTerminal<Settings>,
sampling_timer: SamplingTimer,
digital_inputs: (DigitalInput0, DigitalInput1),
adcs: (Adc0Input, Adc1Input),
dacs: (Dac0Output, Dac1Output),
generator: FrameGenerator,
timestamper: Timestamper,
stream: [Stream; 2],
tele_state: [i64; 3],
pll: PLL,
}Expand description
Local resources
Fields§
§usb_terminal: SerialTerminal<Settings>§sampling_timer: SamplingTimer§digital_inputs: (DigitalInput0, DigitalInput1)§adcs: (Adc0Input, Adc1Input)§dacs: (Dac0Output, Dac1Output)§generator: FrameGenerator§timestamper: Timestamper§stream: [Stream; 2]§tele_state: [i64; 3]§pll: PLLAuto Trait Implementations§
impl Freeze for Local
impl !RefUnwindSafe for Local
impl Send for Local
impl !Sync for Local
impl Unpin for Local
impl !UnwindSafe for Local
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
§impl<T, M> ForwardCompat<T, M> for T
impl<T, M> ForwardCompat<T, M> for T
§impl<T> ReverseCompat<T> for T
impl<T> ReverseCompat<T> for T
§fn reverse(self) -> Reverse<T>
fn reverse(self) -> Reverse<T>
Create an e-h-c wrapper around and e-h object Available methods depend on the wrapped type
§fn reverse_cell(self) -> Reverse<RefCell<T>>
fn reverse_cell(self) -> Reverse<RefCell<T>>
Create an e-h-c reverse compatibility wrapper using a ref-cell for interior mutability (required for InputPin types)