[−][src]Enum safe_nd::Response
RPC responses from vaults.
Variants
Get ImmutableData.
Get MutableData.
Get MutableData shell.
Get MutableData version.
ListMDataEntries(Result<MDataEntries>)List all MutableData entries (key-value pairs).
List all MutableData keys.
ListMDataValues(Result<MDataValues>)List all MutableData values.
ListMDataUserPermissions(Result<MDataPermissionSet>)Get MutableData permissions for a user.
ListMDataPermissions(Result<BTreeMap<PublicKey, MDataPermissionSet>>)List all MutableData permissions.
GetMDataValue(Result<MDataValue>)Get MutableData value.
Get Sequence.
GetSDataOwner(Result<SDataOwner>)Get Sequence owners.
GetSDataRange(Result<SDataEntries>)Get Sequence entries from a range.
GetSDataLastEntry(Result<(u64, SDataEntry)>)Get Sequence last entry.
GetSDataPermissions(Result<SDataPermissions>)List all Sequence permissions at the provided index.
GetSDataUserPermissions(Result<SDataUserPermissions>)Get Sequence permissions for a user.
Get coin balance.
Transaction(Result<Transaction>)Return the result of a transaction.
Get an encrypted login packet.
Get a list of authorised keys and the version of the auth keys container from Elders.
Return a success or failure status for a mutation operation.
Trait Implementations
impl Clone for Response[src]
impl Debug for Response[src]
impl<'de> Deserialize<'de> for Response[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for Response[src]
impl Hash for Response[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<Response> for Response[src]
impl PartialOrd<Response> for Response[src]
fn partial_cmp(&self, other: &Response) -> Option<Ordering>[src]
fn lt(&self, other: &Response) -> bool[src]
fn le(&self, other: &Response) -> bool[src]
fn gt(&self, other: &Response) -> bool[src]
fn ge(&self, other: &Response) -> bool[src]
impl Serialize for Response[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for Response[src]
impl StructuralPartialEq for Response[src]
impl TryFrom<Response> for IData[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for MData[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for SDataOwner[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for SDataEntries[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for (u64, SDataEntry)[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for SDataPermissions[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for SDataUserPermissions[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for Coins[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for Transaction[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for (BTreeMap<PublicKey, AppPermissions>, u64)[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for (Vec<u8>, Signature)[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for ()[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for u64[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for MDataEntries[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for BTreeSet<Vec<u8>>[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for MDataValues[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for MDataPermissionSet[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for BTreeMap<PublicKey, MDataPermissionSet>[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for MDataValue[src]
type Error = TryFromError
The type returned in the event of a conversion error.
fn try_from(response: Response) -> Result<Self, Self::Error>[src]
impl TryFrom<Response> for SData[src]
Auto Trait Implementations
impl RefUnwindSafe for Response
impl Send for Response
impl Sync for Response
impl Unpin for Response
impl UnwindSafe for Response
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Member for T where
T: Clone + Eq + Hash, [src]
T: Clone + Eq + Hash,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,