pub struct PlatformStorageContext {
pub tenant_id: String,
pub workspace_id: String,
pub installation_id: String,
pub solution_id: String,
pub identity_id: Option<String>,
pub capabilities: Vec<String>,
pub source: Option<String>,
}Expand description
Managed storage context (ADR-002) — kept for platform parity; Hub is independent.
Fields§
§tenant_id: String§workspace_id: String§installation_id: String§solution_id: String§identity_id: Option<String>§capabilities: Vec<String>§source: Option<String>Trait Implementations§
Source§impl Clone for PlatformStorageContext
impl Clone for PlatformStorageContext
Source§fn clone(&self) -> PlatformStorageContext
fn clone(&self) -> PlatformStorageContext
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlatformStorageContext
impl Debug for PlatformStorageContext
Source§impl Default for PlatformStorageContext
impl Default for PlatformStorageContext
Source§fn default() -> PlatformStorageContext
fn default() -> PlatformStorageContext
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlatformStorageContext
impl<'de> Deserialize<'de> for PlatformStorageContext
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PlatformStorageContext
impl RefUnwindSafe for PlatformStorageContext
impl Send for PlatformStorageContext
impl Sync for PlatformStorageContext
impl Unpin for PlatformStorageContext
impl UnsafeUnpin for PlatformStorageContext
impl UnwindSafe for PlatformStorageContext
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