pub struct ContentItem {
pub id: String,
pub title: String,
pub body_adf: Option<Value>,
pub metadata: ContentMetadata,
}Expand description
A content item fetched from an Atlassian Cloud API.
Fields§
§id: StringIdentifier: JIRA issue key (e.g., “PROJ-123”) or Confluence page ID.
title: StringTitle (JIRA summary or Confluence page title).
body_adf: Option<Value>Body as raw ADF JSON value (may be None when the field is null).
metadata: ContentMetadataBackend-specific metadata that maps to frontmatter fields.
Trait Implementations§
Source§impl Clone for ContentItem
impl Clone for ContentItem
Source§fn clone(&self) -> ContentItem
fn clone(&self) -> ContentItem
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 ContentItem
impl RefUnwindSafe for ContentItem
impl Send for ContentItem
impl Sync for ContentItem
impl Unpin for ContentItem
impl UnsafeUnpin for ContentItem
impl UnwindSafe for ContentItem
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