pub struct TrServiceFS {
pub director: TrDirector<TripleStoreFS>,
pub space_id: String,
pub org_space_id: String,
}Fields§
§director: TrDirector<TripleStoreFS>§space_id: String§org_space_id: StringImplementations§
Source§impl TrServiceFS
impl TrServiceFS
pub fn new(space_id: String) -> Self
pub fn set_tmp_space_id(&mut self, space_id: String)
pub fn revert_space_id(&mut self)
pub fn get_all_info_triples_from_info_table( &mut self, infotable_name: String, ) -> Vec<InfoTriple>
pub fn get_n_flatten_all_from_table_list( &mut self, table_list: Vec<String>, ) -> InfoTable
pub fn create_infotriple(&mut self, id1: String, id2: String) -> InfoTriple
pub fn clear_infotable(&mut self, infotable_name: String)
pub fn get_all_info_triples_from_info_table_guest_space( &mut self, infotable_name: String, space_id: String, ) -> Vec<InfoTriple>
pub fn get_all_info_triples_from_space_info_table_guest_space( &mut self, table_name: String, space_id: String, ) -> Vec<InfoTriple>
pub fn get_n_flatten_all_from_table_list_guest_space( &mut self, table_list: Vec<String>, space_id: String, ) -> InfoTable
pub fn create_infotriple_guest_space( &mut self, id1: String, id2: String, space_id: String, ) -> InfoTriple
pub fn clear_infotable_guest_space( &mut self, infotable_name: String, space_id: String, )
Trait Implementations§
Source§impl Clone for TrServiceFS
impl Clone for TrServiceFS
Source§fn clone(&self) -> TrServiceFS
fn clone(&self) -> TrServiceFS
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 moreAuto Trait Implementations§
impl Freeze for TrServiceFS
impl RefUnwindSafe for TrServiceFS
impl Send for TrServiceFS
impl Sync for TrServiceFS
impl Unpin for TrServiceFS
impl UnwindSafe for TrServiceFS
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