pub struct LandscapePort {
pub name: String,
pub type_ref: LandscapeTypeRef,
pub required: bool,
pub cardinality: LandscapeCardinality,
}Expand description
A curated function input or output.
Fields§
§name: String§type_ref: LandscapeTypeRef§required: bool§cardinality: LandscapeCardinalityImplementations§
Trait Implementations§
Source§impl Clone for LandscapePort
impl Clone for LandscapePort
Source§fn clone(&self) -> LandscapePort
fn clone(&self) -> LandscapePort
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 LandscapePort
impl Debug for LandscapePort
Source§impl<'de> Deserialize<'de> for LandscapePort
impl<'de> Deserialize<'de> for LandscapePort
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
impl Eq for LandscapePort
Source§impl PartialEq for LandscapePort
impl PartialEq for LandscapePort
Source§fn eq(&self, other: &LandscapePort) -> bool
fn eq(&self, other: &LandscapePort) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for LandscapePort
impl Serialize for LandscapePort
impl StructuralPartialEq for LandscapePort
Auto Trait Implementations§
impl Freeze for LandscapePort
impl RefUnwindSafe for LandscapePort
impl Send for LandscapePort
impl Sync for LandscapePort
impl Unpin for LandscapePort
impl UnsafeUnpin for LandscapePort
impl UnwindSafe for LandscapePort
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