Struct dsnp_graph_sdk_ffi::ImportBundle
source · #[repr(C)]pub struct ImportBundle {
pub dsnp_user_id: DsnpUserId,
pub schema_id: SchemaId,
pub key_pairs: *mut GraphKeyPair,
pub key_pairs_len: size_t,
pub dsnp_keys: DsnpKeys,
pub pages: *mut PageData,
pub pages_len: size_t,
}
Expand description
dsnp_graph_core::dsnp::api_types::ImportBundle
type
Fields§
§dsnp_user_id: DsnpUserId
graph owner dsnp user id
schema_id: SchemaId
Schema id of imported data
key_pairs: *mut GraphKeyPair
key pairs associated with this graph which is used for encryption and PRI generation
key_pairs_len: size_t
§dsnp_keys: DsnpKeys
published dsnp keys associated with this dsnp user
pages: *mut PageData
Page data containing the social graph retrieved from chain
pages_len: size_t
Auto Trait Implementations§
impl RefUnwindSafe for ImportBundle
impl !Send for ImportBundle
impl !Sync for ImportBundle
impl Unpin for ImportBundle
impl UnwindSafe for ImportBundle
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