pub struct MarkdownResponse {
pub frontmatter: MarkdownFrontmatter,
pub body: String,
}Fields§
§frontmatter: MarkdownFrontmatter§body: StringImplementations§
Source§impl MarkdownResponse
impl MarkdownResponse
pub fn new(frontmatter: MarkdownFrontmatter, body: impl Into<String>) -> Self
pub fn to_markdown(&self) -> String
Trait Implementations§
Source§impl Clone for MarkdownResponse
impl Clone for MarkdownResponse
Source§fn clone(&self) -> MarkdownResponse
fn clone(&self) -> MarkdownResponse
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 moreAuto Trait Implementations§
impl Freeze for MarkdownResponse
impl RefUnwindSafe for MarkdownResponse
impl Send for MarkdownResponse
impl Sync for MarkdownResponse
impl Unpin for MarkdownResponse
impl UnwindSafe for MarkdownResponse
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