pub enum ConfigGrant {
Short(Located<String>),
Long(Box<LongGrant>),
}Expand description
A service config grant with its syntax form retained.
Variants§
Trait Implementations§
Source§impl Clone for ConfigGrant
impl Clone for ConfigGrant
Source§fn clone(&self) -> ConfigGrant
fn clone(&self) -> ConfigGrant
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConfigGrant
impl Debug for ConfigGrant
impl Eq for ConfigGrant
Source§impl PartialEq for ConfigGrant
impl PartialEq for ConfigGrant
impl StructuralPartialEq for ConfigGrant
Auto Trait Implementations§
impl Freeze for ConfigGrant
impl RefUnwindSafe for ConfigGrant
impl Send for ConfigGrant
impl Sync for ConfigGrant
impl Unpin for ConfigGrant
impl UnsafeUnpin for ConfigGrant
impl UnwindSafe for ConfigGrant
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