pub struct ResourceSchema {
pub name: String,
pub kind: String,
pub provider: Option<String>,
pub properties: HashMap<String, String>,
}Expand description
Infrastructure resource schema (bucket, queue, topic)
Fields§
§name: String§kind: String§provider: Option<String>§properties: HashMap<String, String>Trait Implementations§
Source§impl Clone for ResourceSchema
impl Clone for ResourceSchema
Source§fn clone(&self) -> ResourceSchema
fn clone(&self) -> ResourceSchema
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 moreAuto Trait Implementations§
impl Freeze for ResourceSchema
impl RefUnwindSafe for ResourceSchema
impl Send for ResourceSchema
impl Sync for ResourceSchema
impl Unpin for ResourceSchema
impl UnsafeUnpin for ResourceSchema
impl UnwindSafe for ResourceSchema
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