Archival

Struct Archival 

Source
pub struct Archival<F: FileSystemAPI + Clone + Debug> {
    pub site: Site,
    /* private fields */
}

Fields§

§site: Site

Implementations§

Source§

impl<F: FileSystemAPI + Clone + Debug> Archival<F>

Source

pub fn is_compatible(fs: &F) -> Result<bool, Box<dyn Error>>

Source

pub fn new(fs: F) -> Result<Self, Box<dyn Error>>

Source

pub fn new_with_upload_prefix( fs: F, upload_prefix: &str, ) -> Result<Self, Box<dyn Error>>

Source

pub fn new_with_field_config( fs: F, field_config: FieldConfig, ) -> Result<Self, Box<dyn Error>>

Source

pub fn build( &self, options: BuildOptions, ) -> Result<ArchivalBuildId, Box<dyn Error>>

Source

pub fn dump_schemas(&self) -> Result<(), Box<dyn Error>>

Source

pub fn generate_root_json_schema( &self, options: ObjectSchemaOptions, ) -> ObjectSchema

Source

pub fn dist_file(&self, path: &Path) -> Option<Vec<u8>>

Source

pub fn dist_files(&self) -> Vec<DistFile>

Source

pub fn object_exists( &self, obj_type: &str, filename: &str, ) -> Result<bool, Box<dyn Error>>

Source

pub fn object_path(&self, obj_type: &str, filename: &str) -> PathBuf

Source

pub fn build_id(&self) -> Result<u64, Box<dyn Error>>

Source

pub fn object_file( &self, obj_type: &str, filename: &str, ) -> Result<String, Box<dyn Error>>

Source

pub fn sha_for_file(&self, file: &Path) -> Result<String, Box<dyn Error>>

Source

pub fn write_file( &self, obj_type: &str, filename: &str, contents: String, ) -> Result<(), Box<dyn Error>>

Source

pub fn send_event( &self, event: ArchivalEvent, build_options: Option<BuildOptions>, ) -> Result<ArchivalEventResponse, Box<dyn Error>>

Source

pub fn manifest_content(&self) -> Result<String, Box<dyn Error>>

Source

pub fn get_objects( &self, ) -> Result<BTreeMap<String, ObjectEntry>, Box<dyn Error>>

Source

pub fn get_object( &self, name: &str, filename: Option<&str>, ) -> Result<Object, Box<dyn Error>>

Source

pub fn get_objects_sorted( &self, sort: impl Fn(&Object, &Object) -> Ordering, ) -> Result<BTreeMap<String, ObjectEntry>, Box<dyn Error>>

Source

pub fn modify_manifest( &mut self, modify: impl FnOnce(&mut Manifest), ) -> Result<(), Box<dyn Error>>

Source

pub fn delete_objects( &self, object_names: impl IntoIterator<Item = impl AsRef<str>>, keep_objects: Option<Vec<ValuePath>>, ) -> Result<(), Box<dyn Error>>

Deletes all the object files for the given object types, except the ones (optionally) specified in the list of keep_objects. This only deletes the files, and does not generate events or rebuild the archival site.

Source

pub fn take_fs(self) -> F

Source

pub fn clone_fs(&self) -> Result<F, Box<dyn Error>>

Trait Implementations§

Source§

impl<F: Debug + FileSystemAPI + Clone + Debug> Debug for Archival<F>

Source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<F> !Freeze for Archival<F>

§

impl<F> RefUnwindSafe for Archival<F>

§

impl<F> Send for Archival<F>

§

impl<F> Sync for Archival<F>

§

impl<F> Unpin for Archival<F>
where F: Unpin,

§

impl<F> UnwindSafe for Archival<F>

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> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> Same for T

Source§

type Output = T

Should always be Self
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<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> Any for T
where T: Any,