pub struct IndexDocument {
pub suffix: String,
}Expand description
Container for the Suffix element.
Fields§
§suffix: StringA suffix that is appended to a request that is for a directory on the website endpoint (for example,if the suffix is index.html and you make a request to samplebucket/images/ the data that is returned will be for the object with the key name images/index.html) The suffix must not be empty and must not include a slash character.
Trait Implementations§
Source§impl Clone for IndexDocument
impl Clone for IndexDocument
Source§fn clone(&self) -> IndexDocument
fn clone(&self) -> IndexDocument
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 moreSource§impl Debug for IndexDocument
impl Debug for IndexDocument
Source§impl Default for IndexDocument
impl Default for IndexDocument
Source§fn default() -> IndexDocument
fn default() -> IndexDocument
Returns the “default value” for a type. Read more
Source§impl PartialEq for IndexDocument
impl PartialEq for IndexDocument
impl StructuralPartialEq for IndexDocument
Auto Trait Implementations§
impl Freeze for IndexDocument
impl RefUnwindSafe for IndexDocument
impl Send for IndexDocument
impl Sync for IndexDocument
impl Unpin for IndexDocument
impl UnwindSafe for IndexDocument
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