Struct weather_cli::URLPlaceholder
source · pub struct URLPlaceholder {
pub placeholder: String,
pub value: String,
}Expand description
URL placeholder information.
§Example Usage
URLPlaceholder {
placeholder: "{LAT_VALUE}".to_string(),
value: "37.3361663".to_string(),
};Fields§
§placeholder: String§value: StringAuto Trait Implementations§
impl Freeze for URLPlaceholder
impl RefUnwindSafe for URLPlaceholder
impl Send for URLPlaceholder
impl Sync for URLPlaceholder
impl Unpin for URLPlaceholder
impl UnwindSafe for URLPlaceholder
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