pub struct TriodeClassA<F>where
F: Float,{
pub r_i: F,
pub r_p: F,
pub v_pp: F,
pub v_c: F,
}Fields§
§r_i: FInput resistor
r_p: FPlate resistor
v_pp: FSupply voltage
v_c: FCathode voltage
Implementations§
Source§impl<F> TriodeClassA<F>where
F: FilterFloat,
impl<F> TriodeClassA<F>where
F: FilterFloat,
pub fn cache_in<M, A>( self, range: Range<F>, resolution: usize, alloc: A, ) -> TriodeCache<F, M, A>
pub fn cache<M>(self, range: Range<F>, resolution: usize) -> TriodeCache<F, M>where
M: TriodeModel,
Trait Implementations§
Source§impl<F> Clone for TriodeClassA<F>
impl<F> Clone for TriodeClassA<F>
Source§fn clone(&self) -> TriodeClassA<F>
fn clone(&self) -> TriodeClassA<F>
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<F> Debug for TriodeClassA<F>
impl<F> Debug for TriodeClassA<F>
Source§impl<'de, F> Deserialize<'de> for TriodeClassA<F>where
F: Float + Deserialize<'de>,
impl<'de, F> Deserialize<'de> for TriodeClassA<F>where
F: Float + Deserialize<'de>,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<F> PartialEq for TriodeClassA<F>
impl<F> PartialEq for TriodeClassA<F>
Source§impl<F> Serialize for TriodeClassA<F>
impl<F> Serialize for TriodeClassA<F>
impl<F> Copy for TriodeClassA<F>
impl<F> Eq for TriodeClassA<F>
impl<F> StructuralPartialEq for TriodeClassA<F>where
F: Float,
Auto Trait Implementations§
impl<F> Freeze for TriodeClassA<F>where
F: Freeze,
impl<F> RefUnwindSafe for TriodeClassA<F>where
F: RefUnwindSafe,
impl<F> Send for TriodeClassA<F>where
F: Send,
impl<F> Sync for TriodeClassA<F>where
F: Sync,
impl<F> Unpin for TriodeClassA<F>where
F: Unpin,
impl<F> UnwindSafe for TriodeClassA<F>where
F: UnwindSafe,
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