Skip to main content

StorageBucket

Struct StorageBucket 

Source
pub struct StorageBucket {
    pub name: String,
    /* private fields */
}
Expand description

Operations for a single storage bucket.

Fields§

§name: String

Implementations§

Source§

impl StorageBucket

Source

pub fn get_url(&self, key: &str) -> String

Get public URL for a stored file (synchronous, no network).

Source

pub async fn upload( &self, key: &str, data: Vec<u8>, content_type: &str, ) -> Result<Value, Error>

Upload a file using multipart/form-data. Keep as direct HTTP — binary multipart upload.

Source

pub async fn download(&self, key: &str) -> Result<Vec<u8>, Error>

Download raw file bytes. Keep as direct HTTP — binary download.

Source

pub async fn delete(&self, key: &str) -> Result<Value, Error>

Delete a file.

Source

pub async fn list( &self, prefix: &str, limit: u32, offset: u32, ) -> Result<Value, Error>

List files in the bucket.

Source

pub async fn get_metadata(&self, key: &str) -> Result<Value, Error>

Get file metadata.

Source

pub async fn update_metadata( &self, key: &str, metadata: &Value, ) -> Result<Value, Error>

Update file metadata.

Source

pub async fn create_signed_url( &self, key: &str, expires_in: &str, ) -> Result<Value, Error>

Create a signed download URL.

Source

pub async fn create_signed_upload_url( &self, key: &str, expires_in: &str, ) -> Result<Value, Error>

Create a signed upload URL for direct client-side uploads.

Source

pub async fn create_signed_upload_url_with_options( &self, key: &str, expires_in: &str, max_file_size: Option<&str>, ) -> Result<Value, Error>

Create a signed upload URL with optional constraints such as maxFileSize.

Source

pub async fn upload_string( &self, key: &str, data: &str, encoding: &str, content_type: &str, ) -> Result<Value, Error>

Upload a string with encoding support. encoding: “raw”, “base64”, “base64url”, “data_url”.

Source

pub async fn initiate_resumable_upload( &self, key: &str, content_type: &str, ) -> Result<String, Error>

Initiate a multipart upload. Returns the upload ID.

Source

pub async fn upload_part( &self, key: &str, upload_id: &str, part_number: u32, data: Vec<u8>, ) -> Result<Value, Error>

Upload a single part for a multipart upload. Returns { partNumber, etag }. Keep as direct HTTP — binary part upload.

Source

pub async fn complete_resumable_upload( &self, key: &str, upload_id: &str, parts: Vec<Value>, ) -> Result<Value, Error>

Complete a multipart upload. parts is a list of { partNumber, etag } from upload_part.

Source

pub async fn abort_resumable_upload( &self, key: &str, upload_id: &str, ) -> Result<Value, Error>

Abort a multipart upload before completion.

Source

pub async fn resume_upload( &self, key: &str, upload_id: &str, chunk: Vec<u8>, part_number: usize, is_last_chunk: bool, ) -> Result<Value, Error>

Upload a chunk for a resumable upload (legacy convenience wrapper). Uploads a single part and, if is_last_chunk, completes the upload.

Auto Trait Implementations§

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> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
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