pub struct Source {
pub excluded_x_handles: Option<Vec<String>>,
pub included_x_handles: Option<Vec<String>>,
pub x_handles: Option<Vec<String>>,
pub post_favorite_count: Option<i32>,
pub post_view_count: Option<i32>,
pub allowed_websites: Option<Vec<String>>,
pub country: Option<String>,
pub excluded_websites: Option<Vec<String>>,
pub safe_search: Option<bool>,
pub links: Option<Vec<String>>,
pub type: String,
}Fields§
§excluded_x_handles: Option<Vec<String>>§included_x_handles: Option<Vec<String>>§x_handles: Option<Vec<String>>§post_favorite_count: Option<i32>§post_view_count: Option<i32>§allowed_websites: Option<Vec<String>>§country: Option<String>§excluded_websites: Option<Vec<String>>§safe_search: Option<bool>§links: Option<Vec<String>>§type: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Source
impl<'de> Deserialize<'de> for Source
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 Source
Auto Trait Implementations§
impl Freeze for Source
impl RefUnwindSafe for Source
impl Send for Source
impl Sync for Source
impl Unpin for Source
impl UnwindSafe for Source
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