pub enum BuilderError {
    MissingClockDiv,
    MissingSampleClocks,
    MissingVref,
    AdcError(Error),
}Variants§
MissingClockDiv
Clock divider missing
MissingSampleClocks
Samples per clock missing
MissingVref
Vref missing
AdcError(Error)
Trait Implementations§
Source§impl Clone for BuilderError
 
impl Clone for BuilderError
Source§fn clone(&self) -> BuilderError
 
fn clone(&self) -> BuilderError
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 Debug for BuilderError
 
impl Debug for BuilderError
Source§impl Format for BuilderError
 
impl Format for BuilderError
Source§impl From<Error> for BuilderError
 
impl From<Error> for BuilderError
impl Copy for BuilderError
Auto Trait Implementations§
impl Freeze for BuilderError
impl RefUnwindSafe for BuilderError
impl Send for BuilderError
impl Sync for BuilderError
impl Unpin for BuilderError
impl UnwindSafe for BuilderError
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