pub struct DynamicContent {
pub url: String,
pub main_content: String,
pub dropdown_contents: Vec<DropdownContent>,
pub filter_contents: Vec<FilterContent>,
pub has_infinite_scroll: bool,
}
Fields§
§url: String
§main_content: String
§dropdown_contents: Vec<DropdownContent>
§filter_contents: Vec<FilterContent>
§has_infinite_scroll: bool
Trait Implementations§
Source§impl Debug for DynamicContent
impl Debug for DynamicContent
Source§impl<'de> Deserialize<'de> for DynamicContent
impl<'de> Deserialize<'de> for DynamicContent
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 DynamicContent
impl RefUnwindSafe for DynamicContent
impl Send for DynamicContent
impl Sync for DynamicContent
impl Unpin for DynamicContent
impl UnwindSafe for DynamicContent
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