Struct safe_core::ipc::ShareMDataReq[][src]

pub struct ShareMDataReq {
    pub app: AppExchangeInfo,
    pub mdata: Vec<ShareMData>,
}

Represents a request to share mutable data

Fields

Info about the app requesting shared access

List of MD names & type tags and permissions that need to be shared

Methods

impl ShareMDataReq
[src]

Convert to it's C representation The returned ffi::ShareMDataReq contains pointers into the returned Vec. As such, the

Trait Implementations

impl Debug for ShareMDataReq
[src]

Formats the value using the given formatter. Read more

impl PartialEq for ShareMDataReq
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for ShareMDataReq
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl ReprC for ShareMDataReq
[src]

C representation of the type

Error type

Constructs the object from a raw pointer.

Auto Trait Implementations