pub enum ExpandedEndpoint {
NodePort {
node_id: String,
port_name: String,
},
ExternalInput {
name: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for ExpandedEndpoint
impl Clone for ExpandedEndpoint
Source§fn clone(&self) -> ExpandedEndpoint
fn clone(&self) -> ExpandedEndpoint
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 ExpandedEndpoint
impl Debug for ExpandedEndpoint
Source§impl PartialEq for ExpandedEndpoint
impl PartialEq for ExpandedEndpoint
Source§fn eq(&self, other: &ExpandedEndpoint) -> bool
fn eq(&self, other: &ExpandedEndpoint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExpandedEndpoint
Auto Trait Implementations§
impl Freeze for ExpandedEndpoint
impl RefUnwindSafe for ExpandedEndpoint
impl Send for ExpandedEndpoint
impl Sync for ExpandedEndpoint
impl Unpin for ExpandedEndpoint
impl UnsafeUnpin for ExpandedEndpoint
impl UnwindSafe for ExpandedEndpoint
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