pub struct BrowsePage {
pub title: String,
pub url: Url,
pub doc: Document,
pub links: Vec<ExtractedLink>,
pub markdown: String,
}Expand description
フォーマット非依存のブラウズ用ページ表現。 HTML / RSS / Markdown など各入力から変換して TuiBrowser に渡す。
Fields§
§title: String§url: Url§doc: Document§links: Vec<ExtractedLink>§markdown: StringTUI の ‘d’ キー dump 用 Markdown テキスト
Trait Implementations§
Source§impl Clone for BrowsePage
impl Clone for BrowsePage
Source§fn clone(&self) -> BrowsePage
fn clone(&self) -> BrowsePage
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 moreAuto Trait Implementations§
impl Freeze for BrowsePage
impl RefUnwindSafe for BrowsePage
impl Send for BrowsePage
impl Sync for BrowsePage
impl Unpin for BrowsePage
impl UnsafeUnpin for BrowsePage
impl UnwindSafe for BrowsePage
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