pub struct GetArticleByLinkParams {
pub link: String,
pub include_content: bool,
pub include_entities: bool,
}Expand description
Parameters for ArticleService::fetch_article_by_link.
Fields§
§link: StringURL of the article (required).
include_content: boolInclude full article content in the response.
include_entities: boolInclude recognized entities in the response.
Trait Implementations§
Source§impl Clone for GetArticleByLinkParams
impl Clone for GetArticleByLinkParams
Source§fn clone(&self) -> GetArticleByLinkParams
fn clone(&self) -> GetArticleByLinkParams
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 GetArticleByLinkParams
impl Debug for GetArticleByLinkParams
Source§impl Default for GetArticleByLinkParams
impl Default for GetArticleByLinkParams
Source§fn default() -> GetArticleByLinkParams
fn default() -> GetArticleByLinkParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GetArticleByLinkParams
impl RefUnwindSafe for GetArticleByLinkParams
impl Send for GetArticleByLinkParams
impl Sync for GetArticleByLinkParams
impl Unpin for GetArticleByLinkParams
impl UnsafeUnpin for GetArticleByLinkParams
impl UnwindSafe for GetArticleByLinkParams
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