pub struct ComposerRepository {
pub type: ComposerRepositoryType,
pub url: String,
pub allow_ssl_downgrade: Option<bool>,
pub canonical: Option<bool>,
pub exclude: Vec<String>,
pub force_lazy_providers: Option<bool>,
pub only: Vec<String>,
pub options: HashMap<String, Value>,
}Fields§
§type: ComposerRepositoryType§url: String§allow_ssl_downgrade: Option<bool>§canonical: Option<bool>§exclude: Vec<String>§force_lazy_providers: Option<bool>§only: Vec<String>§options: HashMap<String, Value>Trait Implementations§
Source§impl Clone for ComposerRepository
impl Clone for ComposerRepository
Source§fn clone(&self) -> ComposerRepository
fn clone(&self) -> ComposerRepository
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 ComposerRepository
impl Debug for ComposerRepository
Source§impl<'de> Deserialize<'de> for ComposerRepository
impl<'de> Deserialize<'de> for ComposerRepository
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 ComposerRepository
impl RefUnwindSafe for ComposerRepository
impl Send for ComposerRepository
impl Sync for ComposerRepository
impl Unpin for ComposerRepository
impl UnsafeUnpin for ComposerRepository
impl UnwindSafe for ComposerRepository
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