pub struct StoredPreview {
pub id: String,
pub tenant_id: String,
pub workspace_id: String,
pub provider_ref: String,
pub url: String,
pub state: String,
pub expires_at_ms: u64,
pub version: u64,
pub request_digest: String,
}Fields§
§id: String§tenant_id: String§workspace_id: String§provider_ref: String§url: String§state: String§expires_at_ms: u64§version: u64§request_digest: StringTrait Implementations§
Source§impl Clone for StoredPreview
impl Clone for StoredPreview
Source§fn clone(&self) -> StoredPreview
fn clone(&self) -> StoredPreview
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 StoredPreview
impl Debug for StoredPreview
Source§impl<'de> Deserialize<'de> for StoredPreview
impl<'de> Deserialize<'de> for StoredPreview
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
impl Eq for StoredPreview
Source§impl PartialEq for StoredPreview
impl PartialEq for StoredPreview
Source§impl Serialize for StoredPreview
impl Serialize for StoredPreview
impl StructuralPartialEq for StoredPreview
Auto Trait Implementations§
impl Freeze for StoredPreview
impl RefUnwindSafe for StoredPreview
impl Send for StoredPreview
impl Sync for StoredPreview
impl Unpin for StoredPreview
impl UnsafeUnpin for StoredPreview
impl UnwindSafe for StoredPreview
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