pub struct SolidWellKnown {
pub context: Value,
pub solid_oidc_issuer: String,
pub notification_gateway: String,
pub storage: String,
pub webfinger: Option<String>,
pub api: Option<SolidWellKnownApi>,
}Expand description
Solid Protocol .well-known/solid discovery document. The doc
advertises the OIDC issuer, the pod URL, and the Notifications
endpoint. JSS parity: includes api.accounts URLs.
Fields§
§context: Value§solid_oidc_issuer: String§notification_gateway: String§storage: String§webfinger: Option<String>§api: Option<SolidWellKnownApi>Trait Implementations§
Source§impl Clone for SolidWellKnown
impl Clone for SolidWellKnown
Source§fn clone(&self) -> SolidWellKnown
fn clone(&self) -> SolidWellKnown
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 SolidWellKnown
impl Debug for SolidWellKnown
Source§impl<'de> Deserialize<'de> for SolidWellKnown
impl<'de> Deserialize<'de> for SolidWellKnown
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 SolidWellKnown
impl RefUnwindSafe for SolidWellKnown
impl Send for SolidWellKnown
impl Sync for SolidWellKnown
impl Unpin for SolidWellKnown
impl UnsafeUnpin for SolidWellKnown
impl UnwindSafe for SolidWellKnown
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