[−][src]Enum safe_nd::MData
Object storing a MutableData variant.
Variants
Seq(SeqData)Sequenced MutableData.
Unseq(UnseqData)Unsequenced MutableData.
Implementations
impl Data[src]
pub fn address(&self) -> &Address[src]
Returns the address of the data.
pub fn kind(&self) -> Kind[src]
Returns the kind of the data.
pub fn name(&self) -> &XorName[src]
Returns the name of the data.
pub fn tag(&self) -> u64[src]
Returns the tag of the data.
pub fn is_seq(&self) -> bool[src]
Returns true if the data is sequenced.
pub fn is_unseq(&self) -> bool[src]
Returns true if the data is unsequenced.
pub fn version(&self) -> u64[src]
Returns the version of this data.
pub fn keys(&self) -> BTreeSet<Vec<u8>>[src]
Returns all the keys in the data.
pub fn shell(&self) -> Self[src]
Returns the shell of the data.
pub fn permissions(&self) -> BTreeMap<PublicKey, PermissionSet>[src]
Gets a complete list of permissions.
pub fn user_permissions(&self, user: PublicKey) -> Result<&PermissionSet>[src]
Gets the permissions for the provided user.
pub fn set_user_permissions(
&mut self,
user: PublicKey,
permissions: PermissionSet,
version: u64
) -> Result<()>[src]
&mut self,
user: PublicKey,
permissions: PermissionSet,
version: u64
) -> Result<()>
Inserts or update permissions for the provided user.
pub fn del_user_permissions(
&mut self,
user: PublicKey,
version: u64
) -> Result<()>[src]
&mut self,
user: PublicKey,
version: u64
) -> Result<()>
Deletes permissions for the provided user.
pub fn check_permissions(
&self,
action: Action,
requester: PublicKey
) -> Result<()>[src]
&self,
action: Action,
requester: PublicKey
) -> Result<()>
Checks permissions for given action for the provided user.
pub fn check_is_owner(&self, requester: PublicKey) -> Result<()>[src]
Checks if the provided user is an owner.
pub fn owner(&self) -> PublicKey[src]
Returns the owner key.
pub fn mutate_entries(
&mut self,
actions: EntryActions,
requester: PublicKey
) -> Result<()>[src]
&mut self,
actions: EntryActions,
requester: PublicKey
) -> Result<()>
Mutates entries (key + value pairs) in bulk.
Trait Implementations
impl Clone for Data[src]
impl Debug for Data[src]
impl<'de> Deserialize<'de> for Data[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for Data[src]
impl From<Data> for Data[src]
impl From<SeqData> for Data[src]
impl From<UnseqData> for Data[src]
impl Hash for Data[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 Ord for Data[src]
fn cmp(&self, other: &Data) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Data> for Data[src]
impl PartialOrd<Data> for Data[src]
fn partial_cmp(&self, other: &Data) -> Option<Ordering>[src]
fn lt(&self, other: &Data) -> bool[src]
fn le(&self, other: &Data) -> bool[src]
fn gt(&self, other: &Data) -> bool[src]
fn ge(&self, other: &Data) -> bool[src]
impl Serialize for Data[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for Data[src]
impl StructuralPartialEq for Data[src]
impl TryFrom<Response> for MData[src]
Auto Trait Implementations
impl RefUnwindSafe for Data
impl Send for Data
impl Sync for Data
impl Unpin for Data
impl UnwindSafe for Data
Blanket Implementations
impl<A> Actor for A where
A: Clone + Ord + Hash, [src]
A: Clone + Ord + Hash,
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>,