pub enum IOLayout {
Input(InputLayout),
Output(OutputLayout),
Query(QueryLayout),
Queryable(QueryableLayout),
}
Expand description
Represents a kind of IO (Input, Output, Query, Queryable)
Variants§
Implementations§
Trait Implementations§
Source§impl From<&InputLayout> for IOLayout
impl From<&InputLayout> for IOLayout
Source§fn from(value: &InputLayout) -> IOLayout
fn from(value: &InputLayout) -> IOLayout
Converts to this type from the input type.
Source§impl From<&OutputLayout> for IOLayout
impl From<&OutputLayout> for IOLayout
Source§fn from(value: &OutputLayout) -> IOLayout
fn from(value: &OutputLayout) -> IOLayout
Converts to this type from the input type.
Source§impl From<&QueryLayout> for IOLayout
impl From<&QueryLayout> for IOLayout
Source§fn from(value: &QueryLayout) -> IOLayout
fn from(value: &QueryLayout) -> IOLayout
Converts to this type from the input type.
Source§impl From<&QueryableLayout> for IOLayout
impl From<&QueryableLayout> for IOLayout
Source§fn from(value: &QueryableLayout) -> IOLayout
fn from(value: &QueryableLayout) -> IOLayout
Converts to this type from the input type.
Source§impl From<InputLayout> for IOLayout
impl From<InputLayout> for IOLayout
Source§fn from(value: InputLayout) -> IOLayout
fn from(value: InputLayout) -> IOLayout
Converts to this type from the input type.
Source§impl From<OutputLayout> for IOLayout
impl From<OutputLayout> for IOLayout
Source§fn from(value: OutputLayout) -> IOLayout
fn from(value: OutputLayout) -> IOLayout
Converts to this type from the input type.
Source§impl From<QueryLayout> for IOLayout
impl From<QueryLayout> for IOLayout
Source§fn from(value: QueryLayout) -> IOLayout
fn from(value: QueryLayout) -> IOLayout
Converts to this type from the input type.
Source§impl From<QueryableLayout> for IOLayout
impl From<QueryableLayout> for IOLayout
Source§fn from(value: QueryableLayout) -> IOLayout
fn from(value: QueryableLayout) -> IOLayout
Converts to this type from the input type.
Source§impl TryFrom<IOLayout> for InputLayout
impl TryFrom<IOLayout> for InputLayout
Source§impl TryFrom<IOLayout> for OutputLayout
impl TryFrom<IOLayout> for OutputLayout
Source§impl TryFrom<IOLayout> for QueryLayout
impl TryFrom<IOLayout> for QueryLayout
Source§impl TryFrom<IOLayout> for QueryableLayout
impl TryFrom<IOLayout> for QueryableLayout
impl Eq for IOLayout
impl StructuralPartialEq for IOLayout
Auto Trait Implementations§
impl Freeze for IOLayout
impl RefUnwindSafe for IOLayout
impl Send for IOLayout
impl Sync for IOLayout
impl Unpin for IOLayout
impl UnwindSafe for IOLayout
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.