Document

Struct Document 

Source
pub struct Document<S = Draft> { /* private fields */ }
Expand description

The document aggregate root with compile-time state tracking.

The generic parameter S determines which operations are available:

StateMutableSerializableExportable
DraftYesYesNo (must validate first)
ValidatedNoYesYes

§Typestate Safety

The _state field is private and zero-sized. There is no way to construct a Document<Validated> except through validate().

§Examples

use hwpforge_core::document::Document;
use hwpforge_core::Metadata;

let doc = Document::with_metadata(Metadata {
    title: Some("Report".to_string()),
    ..Metadata::default()
});
assert!(doc.is_empty());

Implementations§

Source§

impl<S> Document<S>

Source

pub fn sections(&self) -> &[Section]

Returns a slice of all sections.

§Examples
use hwpforge_core::document::Document;

let doc = Document::new();
assert!(doc.sections().is_empty());
Source

pub fn metadata(&self) -> &Metadata

Returns a reference to the document metadata.

Source

pub fn section_count(&self) -> usize

Returns the number of sections.

Source

pub fn is_empty(&self) -> bool

Returns true if the document has no sections.

Source§

impl Document<Draft>

Source

pub fn new() -> Self

Creates a new empty draft document with default metadata.

§Examples
use hwpforge_core::document::Document;

let doc = Document::new();
assert!(doc.is_empty());
Source

pub fn with_metadata(metadata: Metadata) -> Self

Creates a new draft document with the given metadata.

§Examples
use hwpforge_core::document::Document;
use hwpforge_core::Metadata;

let doc = Document::with_metadata(Metadata {
    title: Some("Test".to_string()),
    ..Metadata::default()
});
assert_eq!(doc.metadata().title.as_deref(), Some("Test"));
Source

pub fn add_section(&mut self, section: Section)

Appends a section to the draft document.

§Examples
use hwpforge_core::document::Document;
use hwpforge_core::section::Section;
use hwpforge_core::PageSettings;

let mut doc = Document::new();
doc.add_section(Section::new(PageSettings::a4()));
assert_eq!(doc.section_count(), 1);
Source

pub fn set_metadata(&mut self, metadata: Metadata)

Sets the document metadata.

Source

pub fn metadata_mut(&mut self) -> &mut Metadata

Returns a mutable reference to the metadata.

Source

pub fn sections_mut(&mut self) -> &mut [Section]

Returns a mutable slice of sections.

Source

pub fn validate(self) -> CoreResult<Document<Validated>>

Validates the document structure and transitions to Validated.

Consumes self (move semantics). On success, returns a Document<Validated>. On failure, returns a CoreError.

§Errors

Returns CoreError::Validation if the document violates any structural invariant (empty sections, empty paragraphs, etc.).

§Examples
use hwpforge_core::document::Document;
use hwpforge_core::section::Section;
use hwpforge_core::paragraph::Paragraph;
use hwpforge_core::run::Run;
use hwpforge_core::PageSettings;
use hwpforge_foundation::{CharShapeIndex, ParaShapeIndex};

let mut doc = Document::new();
doc.add_section(Section::with_paragraphs(
    vec![Paragraph::with_runs(
        vec![Run::text("Hello", CharShapeIndex::new(0))],
        ParaShapeIndex::new(0),
    )],
    PageSettings::a4(),
));

let validated = doc.validate().unwrap();
assert_eq!(validated.section_count(), 1);
use hwpforge_core::document::Document;

let doc = Document::new(); // empty
assert!(doc.validate().is_err());

Trait Implementations§

Source§

impl<S> Clone for Document<S>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<S> Debug for Document<S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Document<Draft>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl<'de> Deserialize<'de> for Document<Draft>

Source§

fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<S> Display for Document<S>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<S> JsonSchema for Document<S>

Source§

fn schema_name() -> Cow<'static, str>

The name of the generated JSON Schema. Read more
Source§

fn json_schema(gen: &mut SchemaGenerator) -> Schema

Generates a JSON Schema for this type. Read more
§

fn inline_schema() -> bool

Whether JSON Schemas generated for this type should be included directly in parent schemas, rather than being re-used where possible using the $ref keyword. Read more
§

fn schema_id() -> Cow<'static, str>

Returns a string that uniquely identifies the schema produced by this type. Read more
Source§

impl<S> PartialEq for Document<S>

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<S> Serialize for Document<S>

Source§

fn serialize<Ser: Serializer>( &self, serializer: Ser, ) -> Result<Ser::Ok, Ser::Error>

Serialize this value into the given Serde serializer. Read more
Source§

impl<S> Eq for Document<S>

Auto Trait Implementations§

§

impl<S> Freeze for Document<S>

§

impl<S> RefUnwindSafe for Document<S>
where S: RefUnwindSafe,

§

impl<S> Send for Document<S>
where S: Send,

§

impl<S> Sync for Document<S>
where S: Sync,

§

impl<S> Unpin for Document<S>
where S: Unpin,

§

impl<S> UnwindSafe for Document<S>
where S: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,