pub enum NodeResponse {
Governances(Vec<DigestIdentifier>),
SinkEvents(SinkEventsPage),
SubjectData(Option<SubjectData>),
GovernanceTrackers(Vec<DigestIdentifier>),
PendingTransfers(Vec<TransferSubject>),
SignRequest(Signature),
IOwnerNewOwner {
i_owner: bool,
i_new_owner: Option<bool>,
},
AuthData {
auth: bool,
subject_data: Option<SubjectData>,
},
Ok,
}Expand description
Node response.
Variants§
Governances(Vec<DigestIdentifier>)
SinkEvents(SinkEventsPage)
SubjectData(Option<SubjectData>)
GovernanceTrackers(Vec<DigestIdentifier>)
PendingTransfers(Vec<TransferSubject>)
SignRequest(Signature)
IOwnerNewOwner
AuthData
Ok
Trait Implementations§
Source§impl Clone for NodeResponse
impl Clone for NodeResponse
Source§fn clone(&self) -> NodeResponse
fn clone(&self) -> NodeResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 NodeResponse
impl Debug for NodeResponse
Source§impl<'de> Deserialize<'de> for NodeResponse
impl<'de> Deserialize<'de> for NodeResponse
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
Source§impl Serialize for NodeResponse
impl Serialize for NodeResponse
impl Response for NodeResponse
Auto Trait Implementations§
impl Freeze for NodeResponse
impl RefUnwindSafe for NodeResponse
impl Send for NodeResponse
impl Sync for NodeResponse
impl Unpin for NodeResponse
impl UnsafeUnpin for NodeResponse
impl UnwindSafe for NodeResponse
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<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more