cloud_file_signer/
permissions.rs

1//! Types for representing permissions that can be granted to a presigned URL.
2
3/// Permissions that can be granted to a presigned URL.
4#[derive(Debug)]
5pub enum Permission {
6    /// The URL can be used to read the file.
7    Read,
8    /// The URL can be used to write to the file.
9    Write,
10}