pub struct Website {
pub id: Option<String>,
pub domain: Option<String>,
pub page_ids: Option<Vec<String>>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Fields§
§id: Option<String>Unique website identifier
domain: Option<String>Website domain
page_ids: Option<Vec<String>>IDs of pages associated with this website
created_at: Option<String>§updated_at: Option<String>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Website
impl<'de> Deserialize<'de> for Website
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 StructuralPartialEq for Website
Auto Trait Implementations§
impl Freeze for Website
impl RefUnwindSafe for Website
impl Send for Website
impl Sync for Website
impl Unpin for Website
impl UnsafeUnpin for Website
impl UnwindSafe for Website
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