pub struct DeleteLink {
pub author: HoloHash<Agent>,
pub timestamp: Timestamp,
pub action_seq: u32,
pub prev_action: HoloHash<Action>,
pub base_address: HoloHash<AnyLinkable>,
pub link_add_address: HoloHash<Action>,
}Expand description
Declares that a previously made Link should be nullified and considered removed.
Fields§
§timestamp: Timestamp§action_seq: u32§prev_action: HoloHash<Action>§base_address: HoloHash<AnyLinkable>this is redundant with the CreateLink action but needs to be included to facilitate DHT ops
this is NOT exposed to wasm developers and is validated by the subconscious to ensure that
it always matches the base_address of the CreateLink
link_add_address: HoloHash<Action>The address of the CreateLink being reversed
Trait Implementations§
Source§impl ActionBuilder<DeleteLink> for DeleteLink
impl ActionBuilder<DeleteLink> for DeleteLink
fn build(self, common: ActionBuilderCommon) -> DeleteLink
Source§impl ActionUnweighed for DeleteLink
impl ActionUnweighed for DeleteLink
Source§impl ActionWeighed for DeleteLink
impl ActionWeighed for DeleteLink
type Unweighed = DeleteLink
type Weight = ()
Source§fn into_action(self) -> Action
fn into_action(self) -> Action
Construct the full Action enum with this variant.
Source§fn unweighed(self) -> <DeleteLink as ActionWeighed>::Unweighed
fn unweighed(self) -> <DeleteLink as ActionWeighed>::Unweighed
Erase the rate limiting weight info, creating an “unweighed” version
of this action. This is used primarily by validators who need to run the
weigh callback on an action they received, and want to make sure their
callback is not using the predefined weight to influence the result.Source§impl Clone for DeleteLink
impl Clone for DeleteLink
Source§fn clone(&self) -> DeleteLink
fn clone(&self) -> DeleteLink
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 DeleteLink
impl Debug for DeleteLink
Source§impl<'de> Deserialize<'de> for DeleteLink
impl<'de> Deserialize<'de> for DeleteLink
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeleteLink, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<DeleteLink, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<(DeleteLink, ActionBuilderCommon)> for DeleteLink
impl From<(DeleteLink, ActionBuilderCommon)> for DeleteLink
Source§fn from(_: (DeleteLink, ActionBuilderCommon)) -> DeleteLink
fn from(_: (DeleteLink, ActionBuilderCommon)) -> DeleteLink
Converts to this type from the input type.
Source§impl Hash for DeleteLink
impl Hash for DeleteLink
Source§impl HashableContent for DeleteLink
impl HashableContent for DeleteLink
Source§fn hash_type(&self) -> <DeleteLink as HashableContent>::HashType
fn hash_type(&self) -> <DeleteLink as HashableContent>::HashType
The HashType which this content will be hashed to
Source§fn hashable_content(&self) -> HashableContentBytes
fn hashable_content(&self) -> HashableContentBytes
Return a subset of the content, either as SerializedBytes “content”,
which will be used to compute the hash, or as an already precomputed
hash which will be used directly
Source§impl PartialEq for DeleteLink
impl PartialEq for DeleteLink
Source§impl Serialize for DeleteLink
impl Serialize for DeleteLink
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Source§impl<'a> TryFrom<&'a Action> for &'a DeleteLink
impl<'a> TryFrom<&'a Action> for &'a DeleteLink
Source§type Error = WrongActionError
type Error = WrongActionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: &'a Action,
) -> Result<&'a DeleteLink, <&'a DeleteLink as TryFrom<&'a Action>>::Error>
fn try_from( value: &'a Action, ) -> Result<&'a DeleteLink, <&'a DeleteLink as TryFrom<&'a Action>>::Error>
Performs the conversion.
Source§impl TryFrom<&DeleteLink> for SerializedBytes
impl TryFrom<&DeleteLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: &DeleteLink) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &DeleteLink) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<Action> for DeleteLink
impl TryFrom<Action> for DeleteLink
Source§type Error = WrongActionError
type Error = WrongActionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: Action,
) -> Result<DeleteLink, <DeleteLink as TryFrom<Action>>::Error>
fn try_from( value: Action, ) -> Result<DeleteLink, <DeleteLink as TryFrom<Action>>::Error>
Performs the conversion.
Source§impl TryFrom<DeleteLink> for SerializedBytes
impl TryFrom<DeleteLink> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: DeleteLink) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: DeleteLink) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<Record> for DeleteLink
impl TryFrom<Record> for DeleteLink
Source§type Error = WrongActionError
type Error = WrongActionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: Record,
) -> Result<DeleteLink, <DeleteLink as TryFrom<Record>>::Error>
fn try_from( value: Record, ) -> Result<DeleteLink, <DeleteLink as TryFrom<Record>>::Error>
Performs the conversion.
Source§impl TryFrom<SerializedBytes> for DeleteLink
impl TryFrom<SerializedBytes> for DeleteLink
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(sb: SerializedBytes) -> Result<DeleteLink, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<DeleteLink, SerializedBytesError>
Performs the conversion.
impl Eq for DeleteLink
impl StructuralPartialEq for DeleteLink
Auto Trait Implementations§
impl Freeze for DeleteLink
impl RefUnwindSafe for DeleteLink
impl Send for DeleteLink
impl Sync for DeleteLink
impl Unpin for DeleteLink
impl UnsafeUnpin for DeleteLink
impl UnwindSafe for DeleteLink
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.Source§impl<T, C> HashableContentExtSync<T> for Cwhere
T: HashTypeSync,
C: HashableContent<HashType = T>,
impl<T, C> HashableContentExtSync<T> for Cwhere
T: HashTypeSync,
C: HashableContent<HashType = T>,
Source§fn into_hashed(self) -> HoloHashed<C>
fn into_hashed(self) -> HoloHashed<C>
Move into a HoloHashed