pub struct Forge {
pub starchart_url: Option<String>,
pub url: String,
pub forge_type: ForgeImplementation,
pub last_crawl_on: Option<i64>,
}
Expand description
data representing a forge instance
Fields§
§starchart_url: Option<String>
url of the Starchart instance None = local instance Some(&’a str) = foreign instance
url: String
url of the forge
forge_type: ForgeImplementation
type of the forge
last_crawl_on: Option<i64>
last crawl
Trait Implementations§
source§impl<'de> Deserialize<'de> for Forge
impl<'de> Deserialize<'de> for Forge
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