aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/dependency_resolver/operation/operation_interface.rs
blob: 99a40c4948aa78afc9afbd49e791a7d62dea5e12 (plain)
1
2
3
4
5
6
7
8
9
//! ref: composer/src/Composer/DependencyResolver/Operation/OperationInterface.php

pub trait OperationInterface {
    fn get_operation_type(&self) -> String;

    fn show(&self, lock: bool) -> String;

    fn to_string(&self) -> String;
}