Function search_slash_code

Source
pub async fn search_slash_code(
    configuration: &Configuration,
    q: &str,
    sort: Option<&str>,
    order: Option<&str>,
    per_page: Option<i32>,
    page: Option<i32>,
) -> Result<SearchCode200Response, Error<SearchSlashCodeError>>
Expand description

Searches for query terms inside of a file. This method returns up to 100 results per page. When searching for code, you can get text match metadata for the file content and file path fields when you pass the text-match media type. For more details about how to receive highlighted search results, see Text match metadata. For example, if you want to find the definition of the addClass function inside jQuery repository, your query would look something like this: q=addClass+in:file+language:js+repo:jquery/jquery This query searches for the keyword addClass within a file’s contents. The query limits the search to files where the language is JavaScript in the jquery/jquery repository. Considerations for code search: Due to the complexity of searching code, there are a few restrictions on how searches are performed: * Only the default branch is considered. In most cases, this will be the master branch. * Only files smaller than 384 KB are searchable. * You must always include at least one search term when searching source code. For example, searching for language:go is not valid, while amazing language:go is. This endpoint requires you to authenticate and limits you to 10 requests per minute.