pub struct BroadsideCoupledInput {
pub width: f64,
pub separation: f64,
pub height_total: f64,
pub thickness: f64,
pub er: f64,
pub shielded: bool,
}Expand description
Inputs for broadside-coupled differential pair.
Fields§
§width: f64Strip width (mils).
separation: f64Vertical separation between the two strips (mils).
height_total: f64Ground-to-ground spacing (mils). Only used in shielded mode.
thickness: f64Conductor thickness (mils).
er: f64Substrate relative permittivity.
shielded: booltrue = shielded (between two ground planes), false = non-shielded
Auto Trait Implementations§
impl Freeze for BroadsideCoupledInput
impl RefUnwindSafe for BroadsideCoupledInput
impl Send for BroadsideCoupledInput
impl Sync for BroadsideCoupledInput
impl Unpin for BroadsideCoupledInput
impl UnsafeUnpin for BroadsideCoupledInput
impl UnwindSafe for BroadsideCoupledInput
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