pub struct ResolvedDoc {
pub title: String,
pub is_valid: bool,
}Expand description
문서/카테고리 resolve 결과 (title만 저장, URL은 렌더러에서 조립)
Fields§
§title: String§is_valid: boolTrait Implementations§
Source§impl Clone for ResolvedDoc
impl Clone for ResolvedDoc
Source§fn clone(&self) -> ResolvedDoc
fn clone(&self) -> ResolvedDoc
Returns a duplicate of the value. Read more
1.0.0 · 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 ResolvedDoc
impl Debug for ResolvedDoc
Source§impl Default for ResolvedDoc
impl Default for ResolvedDoc
Source§fn default() -> ResolvedDoc
fn default() -> ResolvedDoc
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ResolvedDoc
impl RefUnwindSafe for ResolvedDoc
impl Send for ResolvedDoc
impl Sync for ResolvedDoc
impl Unpin for ResolvedDoc
impl UnwindSafe for ResolvedDoc
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