Blocks

Struct Blocks 

Source
pub struct Blocks<B1, B2>(pub B1, pub B2);

Tuple Fields§

§0: B1§1: B2

Trait Implementations§

Source§

impl<B1: Debug, B2: Debug> Debug for Blocks<B1, B2>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<B1, B2> ElasticFiniteElementModel for Blocks<B1, B2>

Source§

impl<B1, B2> SolidFiniteElementModel for Blocks<B1, B2>

Auto Trait Implementations§

§

impl<B1, B2> Freeze for Blocks<B1, B2>
where B1: Freeze, B2: Freeze,

§

impl<B1, B2> RefUnwindSafe for Blocks<B1, B2>

§

impl<B1, B2> Send for Blocks<B1, B2>
where B1: Send, B2: Send,

§

impl<B1, B2> Sync for Blocks<B1, B2>
where B1: Sync, B2: Sync,

§

impl<B1, B2> Unpin for Blocks<B1, B2>
where B1: Unpin, B2: Unpin,

§

impl<B1, B2> UnwindSafe for Blocks<B1, B2>
where B1: UnwindSafe, B2: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.