pub struct Frontend {
pub name: String,
pub config: HashMap<String, Option<String>>,
pub options: HashMap<String, Option<String>>,
pub acls: HashSet<Acl>,
pub backends: Vec<Backend>,
pub bind: Bind,
}Fields§
§name: String§config: HashMap<String, Option<String>>§options: HashMap<String, Option<String>>§acls: HashSet<Acl>§backends: Vec<Backend>§bind: BindTrait Implementations§
impl Eq for Frontend
impl StructuralPartialEq for Frontend
Auto Trait Implementations§
impl Freeze for Frontend
impl RefUnwindSafe for Frontend
impl Send for Frontend
impl Sync for Frontend
impl Unpin for Frontend
impl UnwindSafe for Frontend
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