pub struct GeneratedClient {
pub kind: GeneratedClientKind,
pub output_dir: PathBuf,
pub files: Vec<PathBuf>,
pub file_contents: BTreeMap<String, String>,
pub environment: HashMap<String, String>,
/* private fields */
}Fields§
§kind: GeneratedClientKind§output_dir: PathBuf§files: Vec<PathBuf>Paths where artifacts would be written, or were written after write_to_disk.
file_contents: BTreeMap<String, String>Generated artifact contents keyed by file name.
environment: HashMap<String, String>Implementations§
Source§impl GeneratedClient
impl GeneratedClient
pub fn write_to_disk(self) -> Result<GeneratedClient, Error>
Trait Implementations§
Source§impl Clone for GeneratedClient
impl Clone for GeneratedClient
Source§fn clone(&self) -> GeneratedClient
fn clone(&self) -> GeneratedClient
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 GeneratedClient
impl Debug for GeneratedClient
Source§impl PartialEq for GeneratedClient
impl PartialEq for GeneratedClient
Source§fn eq(&self, other: &GeneratedClient) -> bool
fn eq(&self, other: &GeneratedClient) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GeneratedClient
impl StructuralPartialEq for GeneratedClient
Auto Trait Implementations§
impl Freeze for GeneratedClient
impl RefUnwindSafe for GeneratedClient
impl Send for GeneratedClient
impl Sync for GeneratedClient
impl Unpin for GeneratedClient
impl UnsafeUnpin for GeneratedClient
impl UnwindSafe for GeneratedClient
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.