pub struct EndpointEntry {
pub name: String,
pub candid: String,
pub modes: Vec<EndpointMode>,
pub arguments: Vec<EndpointType>,
pub returns: Vec<EndpointType>,
}Expand description
EndpointEntry
Fields§
§name: String§candid: String§modes: Vec<EndpointMode>§arguments: Vec<EndpointType>§returns: Vec<EndpointType>Trait Implementations§
Source§impl Clone for EndpointEntry
impl Clone for EndpointEntry
Source§fn clone(&self) -> EndpointEntry
fn clone(&self) -> EndpointEntry
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 EndpointEntry
impl Debug for EndpointEntry
impl Eq for EndpointEntry
Source§impl PartialEq for EndpointEntry
impl PartialEq for EndpointEntry
Source§fn eq(&self, other: &EndpointEntry) -> bool
fn eq(&self, other: &EndpointEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EndpointEntry
impl Serialize for EndpointEntry
impl StructuralPartialEq for EndpointEntry
Auto Trait Implementations§
impl Freeze for EndpointEntry
impl RefUnwindSafe for EndpointEntry
impl Send for EndpointEntry
impl Sync for EndpointEntry
impl Unpin for EndpointEntry
impl UnsafeUnpin for EndpointEntry
impl UnwindSafe for EndpointEntry
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.