[][src]Enum libjp::Change

pub enum Change {
    NewNode {
        id: NodeId,
        contents: Vec<u8>,
    },
    DeleteNode {
        id: NodeId,
    },
    NewEdge {
        src: NodeId,
        dest: NodeId,
    },
}

A single change.

Variants

NewNode

A change which adds a new node to the graggle, with an ID that must be unique, and with the given contents.

Fields of NewNode

id: NodeId

The ID of the new node.

contents: Vec<u8>

The contents of the new node.

DeleteNode

Marks a node as deleted. Note that deleted nodes are never actually removed; they remain but they are simply marked as deleted.

Fields of DeleteNode

id: NodeId

The ID of the node to delete.

NewEdge

Adds a new edge (i.e. a new ordering relation) between two nodes. Those nodes must either already exist in the graggle at the time this change is applied. (If this Change is part of a Changes that adds some nodes and also an edge between them, then that's ok too.)

Fields of NewEdge

src: NodeId

The source of the new edge (i.e. the one that comes first in the ordering).

dest: NodeId

The destination of the new edge.

Trait Implementations

impl Clone for Change[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for Change[src]

impl PartialEq<Change> for Change[src]

impl Debug for Change[src]

impl Hash for Change[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<'de> Deserialize<'de> for Change[src]

impl Serialize for Change[src]

Auto Trait Implementations

impl Send for Change

impl Sync for Change

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self