pub struct JsonLdRemoteDocument {
pub document: Vec<u8>,
pub document_url: String,
}
Expand description
Returned information about a remote JSON-LD document or context.
Fields§
§document: Vec<u8>
The retrieved document
document_url: String
The final URL of the loaded document. This is important to handle HTTP redirects properly
Auto Trait Implementations§
impl Freeze for JsonLdRemoteDocument
impl RefUnwindSafe for JsonLdRemoteDocument
impl Send for JsonLdRemoteDocument
impl Sync for JsonLdRemoteDocument
impl Unpin for JsonLdRemoteDocument
impl UnwindSafe for JsonLdRemoteDocument
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