pub struct ProvisionOutcome {
pub webid: String,
pub pod_root: String,
pub containers_created: Vec<String>,
pub quota_bytes: Option<u64>,
pub public_type_index: String,
pub private_type_index: String,
pub public_type_index_acl: String,
}Expand description
Result of provisioning a pod.
Fields§
§webid: String§pod_root: String§containers_created: Vec<String>§quota_bytes: Option<u64>§public_type_index: StringStorage path of the public type-index resource
(/settings/publicTypeIndex.jsonld).
private_type_index: StringStorage path of the private type-index resource
(/settings/privateTypeIndex.jsonld).
public_type_index_acl: StringStorage path of the ACL carve-out that grants public read on
the public type index (/settings/publicTypeIndex.jsonld.acl).
Trait Implementations§
Source§impl Clone for ProvisionOutcome
impl Clone for ProvisionOutcome
Source§fn clone(&self) -> ProvisionOutcome
fn clone(&self) -> ProvisionOutcome
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 moreAuto Trait Implementations§
impl Freeze for ProvisionOutcome
impl RefUnwindSafe for ProvisionOutcome
impl Send for ProvisionOutcome
impl Sync for ProvisionOutcome
impl Unpin for ProvisionOutcome
impl UnsafeUnpin for ProvisionOutcome
impl UnwindSafe for ProvisionOutcome
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