pub struct Cloud {
pub domain: String,
pub port: String,
pub path: String,
pub register_procedure: String,
pub protocol: String,
}
Expand description
A representation of the <cloud>
element.
Fields§
§domain: String
The domain to register with.
port: String
The port to register with.
path: String
The path to register with.
register_procedure: String
The procedure to register with.
protocol: String
The protocol to register with.
Trait Implementations§
impl StructuralPartialEq for Cloud
Auto Trait Implementations§
impl Freeze for Cloud
impl RefUnwindSafe for Cloud
impl Send for Cloud
impl Sync for Cloud
impl Unpin for Cloud
impl UnwindSafe for Cloud
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