blob: d7f996712bb9822cc1a8bc37b2d65e2af7b2ccc9 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
use ::model::{Integration, IntegrationId};
impl From<Integration> for IntegrationId {
/// Gets the Id of integration.
fn from(integration: Integration) -> IntegrationId {
integration.id
}
}
|