pub struct IdFormat {
pub deadline: Option<String>,
pub resource: Option<String>,
pub use_long_ids: Option<bool>,
}
Expand description
Describes the ID format for a resource.
Fields§
§deadline: Option<String>
The date in UTC at which you are permanently switched over to using longer IDs. If a deadline is not yet available for this resource type, this field is not returned.
resource: Option<String>
The type of resource.
use_long_ids: Option<bool>
Indicates whether longer IDs (17-character IDs) are enabled for the resource.
Trait Implementations§
impl StructuralPartialEq for IdFormat
Auto Trait Implementations§
impl Freeze for IdFormat
impl RefUnwindSafe for IdFormat
impl Send for IdFormat
impl Sync for IdFormat
impl Unpin for IdFormat
impl UnwindSafe for IdFormat
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