[][src]Struct wysgy_core::Project

pub struct Project { /* fields omitted */ }

Methods

impl Project[src]

pub fn create(name: String) -> Result<Project, Box<dyn Error>>[src]

pub fn open(name: String) -> Result<Project, Box<dyn Error>>[src]

pub fn delete(&self) -> Result<()>[src]

pub fn add_json_node(&self, label: &String) -> Result<(), Box<dyn Error>>[src]

pub fn add_json_node_with_data(
    &self,
    label: &String,
    j: &Value
) -> Result<(), Box<dyn Error>>
[src]

pub fn add_file_node(
    &self,
    label: &String,
    fname: &String
) -> Result<(), Box<dyn Error>>
[src]

pub fn read_node(&self, label: &String) -> Result<(), Box<dyn Error>>[src]

pub fn add_json_relationship(
    &self,
    src: &String,
    dst: &String
) -> Result<(), Box<dyn Error>>
[src]

Auto Trait Implementations

impl Send for Project

impl Sync for Project

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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