[][src]Struct s3find::arg::FindOpt

pub struct FindOpt {
    pub path: S3path,
    pub aws_access_key: Option<String>,
    pub aws_secret_key: Option<String>,
    pub aws_region: Region,
    pub name: Vec<NameGlob>,
    pub iname: Vec<InameGlob>,
    pub regex: Vec<Regex>,
    pub mtime: Vec<FindTime>,
    pub size: Vec<FindSize>,
    pub cmd: Option<Cmd>,
}

Walk a s3 path hierarchy

Fields

S3 path to walk through. It should be s3://bucket/path

AWS access key. Unrequired.

AWS secret key. Unrequired

The region to use. Default value is us-east-1

Glob pattern for match, can be multiple

Case-insensitive glob pattern for match, can be multiple

Regex pattern for match, can be multiple

Modification time for match

File size for match

Trait Implementations

impl From<FindOpt> for FindCommand
[src]

impl From<FindOpt> for FilterList
[src]

impl Clone for FindOpt
[src]

Performs copy-assignment from source. Read more

impl Debug for FindOpt
[src]

impl StructOpt for FindOpt
[src]

Gets the struct from the command line arguments. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Print the error message and quit the program in case of failure. Read more

Gets the struct from any iterator such as a Vec of your making. Read more

Auto Trait Implementations

impl Send for FindOpt

impl Sync for FindOpt

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T