pub struct SourceControlInputBoxDTO {
pub Value: String,
pub Placeholder: Option<String>,
pub Visible: bool,
}Expand description
A serializable struct representing the state of the commit message input box associated with a source control provider.
Fields§
§Value: StringThe current text content of the input box.
Placeholder: Option<String>Placeholder text to show when the input box is empty.
Visible: boolWhether the input box is currently visible.
Trait Implementations§
Source§impl Clone for SourceControlInputBoxDTO
impl Clone for SourceControlInputBoxDTO
Source§fn clone(&self) -> SourceControlInputBoxDTO
fn clone(&self) -> SourceControlInputBoxDTO
Returns a duplicate of the value. Read more
1.0.0 · 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 SourceControlInputBoxDTO
impl Debug for SourceControlInputBoxDTO
Source§impl<'de> Deserialize<'de> for SourceControlInputBoxDTO
impl<'de> Deserialize<'de> for SourceControlInputBoxDTO
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 SourceControlInputBoxDTO
impl RefUnwindSafe for SourceControlInputBoxDTO
impl Send for SourceControlInputBoxDTO
impl Sync for SourceControlInputBoxDTO
impl Unpin for SourceControlInputBoxDTO
impl UnwindSafe for SourceControlInputBoxDTO
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