Skip to main content

GraphFragment

Struct GraphFragment 

Source
pub struct GraphFragment {
    pub version: u32,
    pub nodes: BTreeMap<NodeId, Node>,
    pub ports: BTreeMap<PortId, Port>,
    pub edges: BTreeMap<EdgeId, Edge>,
    pub imports: BTreeMap<GraphId, GraphImport>,
    pub groups: BTreeMap<GroupId, Group>,
    pub sticky_notes: BTreeMap<StickyNoteId, StickyNote>,
    pub symbols: BTreeMap<SymbolId, Symbol>,
    pub bindings: BTreeMap<BindingId, Binding>,
}
Expand description

A deterministic, serializable graph fragment.

Fields§

§version: u32§nodes: BTreeMap<NodeId, Node>§ports: BTreeMap<PortId, Port>§edges: BTreeMap<EdgeId, Edge>§imports: BTreeMap<GraphId, GraphImport>§groups: BTreeMap<GroupId, Group>§sticky_notes: BTreeMap<StickyNoteId, StickyNote>§symbols: BTreeMap<SymbolId, Symbol>§bindings: BTreeMap<BindingId, Binding>

Implementations§

Source§

impl GraphFragment

Source

pub fn to_clipboard_text(&self) -> Result<String, Error>

Serializes this fragment to a clipboard-friendly text payload.

Source

pub fn from_clipboard_text(text: &str) -> Result<Self, Error>

Parses a fragment from clipboard text.

Accepts both:

  • the canonical jellyflow.fragment.v1 header format,
  • raw JSON (useful for debugging and external tooling).
Source§

impl GraphFragment

Source

pub fn from_nodes( graph: &Graph, nodes: impl IntoIterator<Item = NodeId>, ) -> Self

Builds a fragment from a set of nodes, capturing:

  • the selected nodes,
  • their ports,
  • edges that connect between selected nodes.

Groups/notes are not inferred; callers may add them explicitly.

Symbols are inferred for built-in symbol-ref nodes (core::SYMBOL_REF_NODE_KIND) so copy/paste can remain self-contained for the “blackboard variables” contract.

Source

pub fn from_selection( graph: &Graph, selected_nodes: impl IntoIterator<Item = NodeId>, selected_groups: impl IntoIterator<Item = GroupId>, ) -> Self

Builds a fragment from a selection of nodes and groups.

Captures:

  • selected groups,
  • selected nodes,
  • nodes inside selected groups,
  • ports for all captured nodes,
  • edges that connect between captured nodes.

Nodes are detached from their parent group unless that group is included in the fragment.

Source§

impl GraphFragment

Source

pub fn nodes(&self) -> &BTreeMap<NodeId, Node>

Source

pub fn node_mut(&mut self, id: &NodeId) -> Option<&mut Node>

Source

pub fn insert_node(&mut self, id: NodeId, value: Node) -> Option<Node>

Source

pub fn ports(&self) -> &BTreeMap<PortId, Port>

Source

pub fn port_mut(&mut self, id: &PortId) -> Option<&mut Port>

Source

pub fn insert_port(&mut self, id: PortId, value: Port) -> Option<Port>

Source

pub fn edges(&self) -> &BTreeMap<EdgeId, Edge>

Source

pub fn edge_mut(&mut self, id: &EdgeId) -> Option<&mut Edge>

Source

pub fn insert_edge(&mut self, id: EdgeId, value: Edge) -> Option<Edge>

Source

pub fn imports(&self) -> &BTreeMap<GraphId, GraphImport>

Source

pub fn insert_import( &mut self, id: GraphId, value: GraphImport, ) -> Option<GraphImport>

Source

pub fn groups(&self) -> &BTreeMap<GroupId, Group>

Source

pub fn group_mut(&mut self, id: &GroupId) -> Option<&mut Group>

Source

pub fn insert_group(&mut self, id: GroupId, value: Group) -> Option<Group>

Source

pub fn sticky_notes(&self) -> &BTreeMap<StickyNoteId, StickyNote>

Source

pub fn sticky_note_mut(&mut self, id: &StickyNoteId) -> Option<&mut StickyNote>

Source

pub fn insert_sticky_note( &mut self, id: StickyNoteId, value: StickyNote, ) -> Option<StickyNote>

Source

pub fn symbols(&self) -> &BTreeMap<SymbolId, Symbol>

Source

pub fn symbol_mut(&mut self, id: &SymbolId) -> Option<&mut Symbol>

Source

pub fn insert_symbol(&mut self, id: SymbolId, value: Symbol) -> Option<Symbol>

Source

pub fn bindings(&self) -> &BTreeMap<BindingId, Binding>

Source

pub fn binding_mut(&mut self, id: &BindingId) -> Option<&mut Binding>

Source

pub fn insert_binding( &mut self, id: BindingId, value: Binding, ) -> Option<Binding>

Source§

impl GraphFragment

Source

pub fn to_paste_transaction( &self, remapper: &IdRemapper, tuning: PasteTuning, ) -> GraphTransaction

Remaps IDs and produces a transaction that inserts the fragment into a graph.

The resulting transaction is deterministic for a given seed.

Trait Implementations§

Source§

impl Clone for GraphFragment

Source§

fn clone(&self) -> GraphFragment

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for GraphFragment

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for GraphFragment

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for GraphFragment

Source§

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 GraphFragment

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

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

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.