pub struct Core {
pub log: String,
pub token: String,
pub org: String,
pub project: Option<String>,
pub output: PathBuf,
pub save_output: bool,
pub pagination: Pagination,
pub workspaces: Workspaces,
pub terraform_version: String,
}Fields§
§log: String§token: String§org: String§project: Option<String>§output: PathBuf§save_output: bool§pagination: Pagination§workspaces: Workspaces§terraform_version: StringImplementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Core
impl<'de> Deserialize<'de> for Core
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for Core
impl RefUnwindSafe for Core
impl Send for Core
impl Sync for Core
impl Unpin for Core
impl UnwindSafe for Core
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