aya.txt 693 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688
  1. pub mod aya
  2. pub use aya::Btf
  3. pub use aya::BtfError
  4. pub use aya::Endianness
  5. pub use aya::PinningType
  6. pub use aya::bpf_map_def
  7. pub mod aya::maps
  8. pub mod aya::maps::array
  9. pub struct aya::maps::array::Array<T, V: aya::Pod>
  10. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  11. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  12. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  13. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  14. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  15. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  16. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  17. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  18. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  19. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  20. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  21. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  22. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  23. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  24. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  25. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  26. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  27. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  28. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  29. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  30. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  31. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  32. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  33. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  34. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  35. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  36. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  37. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  38. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  39. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  40. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  41. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  42. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  43. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + core::marker::Sized
  44. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  45. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: core::marker::Sized
  46. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  47. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: core::marker::Sized
  48. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  49. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  50. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  51. pub struct aya::maps::array::PerCpuArray<T, V: aya::Pod>
  52. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  53. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  54. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  55. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  56. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  57. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  58. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  59. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  60. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  61. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  62. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  63. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  64. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  65. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  66. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  67. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  68. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  69. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  70. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  71. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  72. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  73. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  74. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  75. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  76. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  77. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  78. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  79. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  80. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  81. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  82. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  83. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  84. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  85. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + core::marker::Sized
  86. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  87. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: core::marker::Sized
  88. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  89. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: core::marker::Sized
  90. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  91. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  92. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  93. pub struct aya::maps::array::ProgramArray<T>
  94. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  95. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  96. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  97. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  98. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  99. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  100. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  101. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  102. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  103. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  104. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  105. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  106. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  107. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  108. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  109. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  110. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  111. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  112. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  113. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  114. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  115. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  116. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  117. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  118. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  119. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  120. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  121. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  122. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  123. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + core::marker::Sized
  124. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  125. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: core::marker::Sized
  126. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  127. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: core::marker::Sized
  128. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  129. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  130. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  131. pub mod aya::maps::bloom_filter
  132. pub struct aya::maps::bloom_filter::BloomFilter<T, V: aya::Pod>
  133. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  134. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  135. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  136. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  137. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  138. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  139. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  140. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  141. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  142. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  143. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  144. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  145. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  146. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  147. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  148. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  149. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  150. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  151. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  152. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  153. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  154. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  155. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  156. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  157. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  158. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  159. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  160. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  161. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  162. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  163. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + core::marker::Sized
  164. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  165. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sized
  166. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  167. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sized
  168. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  169. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  170. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  171. pub mod aya::maps::hash_map
  172. pub struct aya::maps::hash_map::HashMap<T, K, V>
  173. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  174. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  175. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  176. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  177. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  178. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  179. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  180. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  181. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  182. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  183. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  184. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  185. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  186. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  187. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  188. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  189. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  190. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  191. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  192. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  193. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  194. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  195. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  196. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  197. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  198. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  199. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  200. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  201. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  202. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  203. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  204. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  205. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  206. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  207. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  208. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  209. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + core::marker::Sized
  210. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  211. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sized
  212. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  213. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sized
  214. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  215. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  216. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  217. pub struct aya::maps::hash_map::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  218. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  219. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  220. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  221. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  222. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  223. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  224. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  225. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  226. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  227. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  228. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  229. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  230. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  231. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  232. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  233. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  234. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  235. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  236. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  237. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  238. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  239. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  240. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  241. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  242. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  243. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  244. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  245. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  246. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  247. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  248. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  249. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  250. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  251. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  252. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + core::marker::Sized
  253. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  254. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sized
  255. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  256. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sized
  257. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  258. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  259. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  260. pub mod aya::maps::lpm_trie
  261. #[repr(packed)] pub struct aya::maps::lpm_trie::Key<K: aya::Pod>
  262. impl<K: aya::Pod> aya::maps::lpm_trie::Key<K>
  263. pub fn aya::maps::lpm_trie::Key<K>::data(&self) -> K
  264. pub fn aya::maps::lpm_trie::Key<K>::new(prefix_len: u32, data: K) -> Self
  265. pub fn aya::maps::lpm_trie::Key<K>::prefix_len(&self) -> u32
  266. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  267. impl<K: aya::Pod> core::clone::Clone for aya::maps::lpm_trie::Key<K>
  268. pub fn aya::maps::lpm_trie::Key<K>::clone(&self) -> Self
  269. impl<K: aya::Pod> core::marker::Copy for aya::maps::lpm_trie::Key<K>
  270. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  271. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  272. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  273. impl<K> core::marker::Send for aya::maps::lpm_trie::Key<K> where K: core::marker::Send
  274. impl<K> core::marker::Sync for aya::maps::lpm_trie::Key<K> where K: core::marker::Sync
  275. impl<K> core::marker::Unpin for aya::maps::lpm_trie::Key<K> where K: core::marker::Unpin
  276. impl<K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::RefUnwindSafe
  277. impl<K> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::Key<K> where K: core::panic::unwind_safe::UnwindSafe
  278. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::From<T>
  279. pub fn aya::maps::lpm_trie::Key<K>::into(self) -> U
  280. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::Into<T>
  281. pub type aya::maps::lpm_trie::Key<K>::Error = core::convert::Infallible
  282. pub fn aya::maps::lpm_trie::Key<K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  283. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::Key<K> where U: core::convert::TryFrom<T>
  284. pub type aya::maps::lpm_trie::Key<K>::Error = <U as core::convert::TryFrom<T>>::Error
  285. pub fn aya::maps::lpm_trie::Key<K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  286. impl<T> alloc::borrow::ToOwned for aya::maps::lpm_trie::Key<K> where T: core::clone::Clone
  287. pub type aya::maps::lpm_trie::Key<K>::Owned = T
  288. pub fn aya::maps::lpm_trie::Key<K>::clone_into(&self, target: &mut T)
  289. pub fn aya::maps::lpm_trie::Key<K>::to_owned(&self) -> T
  290. impl<T> core::any::Any for aya::maps::lpm_trie::Key<K> where T: 'static + core::marker::Sized
  291. pub fn aya::maps::lpm_trie::Key<K>::type_id(&self) -> core::any::TypeId
  292. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::Key<K> where T: core::marker::Sized
  293. pub fn aya::maps::lpm_trie::Key<K>::borrow(&self) -> &T
  294. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::Key<K> where T: core::marker::Sized
  295. pub fn aya::maps::lpm_trie::Key<K>::borrow_mut(&mut self) -> &mut T
  296. impl<T> core::convert::From<T> for aya::maps::lpm_trie::Key<K>
  297. pub fn aya::maps::lpm_trie::Key<K>::from(t: T) -> T
  298. pub struct aya::maps::lpm_trie::LpmTrie<T, K, V>
  299. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  300. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  301. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  302. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  303. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  304. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  305. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  306. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  307. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  308. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  309. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  310. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  311. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  312. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  313. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  314. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  315. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  316. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  317. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  318. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  319. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  320. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  321. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  322. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  323. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  324. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  325. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  326. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  327. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  328. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  329. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  330. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  331. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  332. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  333. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  334. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  335. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + core::marker::Sized
  336. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  337. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sized
  338. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  339. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sized
  340. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  341. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  342. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  343. pub mod aya::maps::perf
  344. pub enum aya::maps::perf::PerfBufferError
  345. pub aya::maps::perf::PerfBufferError::IOError(std::io::error::Error)
  346. pub aya::maps::perf::PerfBufferError::InvalidPageCount
  347. pub aya::maps::perf::PerfBufferError::InvalidPageCount::page_count: usize
  348. pub aya::maps::perf::PerfBufferError::MMapError
  349. pub aya::maps::perf::PerfBufferError::MMapError::io_error: std::io::error::Error
  350. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded
  351. pub aya::maps::perf::PerfBufferError::MoreSpaceNeeded::size: usize
  352. pub aya::maps::perf::PerfBufferError::NoBuffers
  353. pub aya::maps::perf::PerfBufferError::OpenError
  354. pub aya::maps::perf::PerfBufferError::OpenError::io_error: std::io::error::Error
  355. pub aya::maps::perf::PerfBufferError::PerfEventEnableError
  356. pub aya::maps::perf::PerfBufferError::PerfEventEnableError::io_error: std::io::error::Error
  357. impl core::convert::From<std::io::error::Error> for aya::maps::perf::PerfBufferError
  358. pub fn aya::maps::perf::PerfBufferError::from(source: std::io::error::Error) -> Self
  359. impl core::error::Error for aya::maps::perf::PerfBufferError
  360. pub fn aya::maps::perf::PerfBufferError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  361. impl core::fmt::Display for aya::maps::perf::PerfBufferError
  362. pub fn aya::maps::perf::PerfBufferError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  363. impl core::fmt::Debug for aya::maps::perf::PerfBufferError
  364. pub fn aya::maps::perf::PerfBufferError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  365. impl core::marker::Send for aya::maps::perf::PerfBufferError
  366. impl core::marker::Sync for aya::maps::perf::PerfBufferError
  367. impl core::marker::Unpin for aya::maps::perf::PerfBufferError
  368. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfBufferError
  369. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfBufferError
  370. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfBufferError where U: core::convert::From<T>
  371. pub fn aya::maps::perf::PerfBufferError::into(self) -> U
  372. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfBufferError where U: core::convert::Into<T>
  373. pub type aya::maps::perf::PerfBufferError::Error = core::convert::Infallible
  374. pub fn aya::maps::perf::PerfBufferError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  375. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfBufferError where U: core::convert::TryFrom<T>
  376. pub type aya::maps::perf::PerfBufferError::Error = <U as core::convert::TryFrom<T>>::Error
  377. pub fn aya::maps::perf::PerfBufferError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  378. impl<T> alloc::string::ToString for aya::maps::perf::PerfBufferError where T: core::fmt::Display + core::marker::Sized
  379. pub fn aya::maps::perf::PerfBufferError::to_string(&self) -> alloc::string::String
  380. impl<T> core::any::Any for aya::maps::perf::PerfBufferError where T: 'static + core::marker::Sized
  381. pub fn aya::maps::perf::PerfBufferError::type_id(&self) -> core::any::TypeId
  382. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfBufferError where T: core::marker::Sized
  383. pub fn aya::maps::perf::PerfBufferError::borrow(&self) -> &T
  384. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfBufferError where T: core::marker::Sized
  385. pub fn aya::maps::perf::PerfBufferError::borrow_mut(&mut self) -> &mut T
  386. impl<T> core::convert::From<T> for aya::maps::perf::PerfBufferError
  387. pub fn aya::maps::perf::PerfBufferError::from(t: T) -> T
  388. pub struct aya::maps::perf::AsyncPerfEventArray<T>
  389. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  390. pub fn aya::maps::perf::AsyncPerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::AsyncPerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  391. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  392. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  393. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  394. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  395. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  396. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  397. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  398. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  399. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  400. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Send + core::marker::Sync
  401. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Send + core::marker::Sync
  402. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  403. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  404. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  405. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  406. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  407. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  408. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  409. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  410. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  411. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  412. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  413. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + core::marker::Sized
  414. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  415. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sized
  416. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  417. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sized
  418. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  419. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  420. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  421. pub struct aya::maps::perf::AsyncPerfEventArrayBuffer<T: core::borrow::BorrowMut<aya::maps::MapData>>
  422. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  423. pub async fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::read_events(&mut self, buffers: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  424. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Send + core::marker::Sync
  425. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Send + core::marker::Sync
  426. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  427. impl<T> !core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  428. impl<T> !core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  429. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::From<T>
  430. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::into(self) -> U
  431. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::Into<T>
  432. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = core::convert::Infallible
  433. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  434. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  435. pub type aya::maps::perf::AsyncPerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  436. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  437. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: 'static + core::marker::Sized
  438. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  439. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sized
  440. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow(&self) -> &T
  441. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T> where T: core::marker::Sized
  442. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  443. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArrayBuffer<T>
  444. pub fn aya::maps::perf::AsyncPerfEventArrayBuffer<T>::from(t: T) -> T
  445. pub struct aya::maps::perf::Events
  446. pub aya::maps::perf::Events::lost: usize
  447. pub aya::maps::perf::Events::read: usize
  448. impl core::cmp::Eq for aya::maps::perf::Events
  449. impl core::cmp::PartialEq<aya::maps::perf::Events> for aya::maps::perf::Events
  450. pub fn aya::maps::perf::Events::eq(&self, other: &aya::maps::perf::Events) -> bool
  451. impl core::fmt::Debug for aya::maps::perf::Events
  452. pub fn aya::maps::perf::Events::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  453. impl core::marker::StructuralEq for aya::maps::perf::Events
  454. impl core::marker::StructuralPartialEq for aya::maps::perf::Events
  455. impl core::marker::Send for aya::maps::perf::Events
  456. impl core::marker::Sync for aya::maps::perf::Events
  457. impl core::marker::Unpin for aya::maps::perf::Events
  458. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::Events
  459. impl core::panic::unwind_safe::UnwindSafe for aya::maps::perf::Events
  460. impl<T, U> core::convert::Into<U> for aya::maps::perf::Events where U: core::convert::From<T>
  461. pub fn aya::maps::perf::Events::into(self) -> U
  462. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::Events where U: core::convert::Into<T>
  463. pub type aya::maps::perf::Events::Error = core::convert::Infallible
  464. pub fn aya::maps::perf::Events::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  465. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::Events where U: core::convert::TryFrom<T>
  466. pub type aya::maps::perf::Events::Error = <U as core::convert::TryFrom<T>>::Error
  467. pub fn aya::maps::perf::Events::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  468. impl<T> core::any::Any for aya::maps::perf::Events where T: 'static + core::marker::Sized
  469. pub fn aya::maps::perf::Events::type_id(&self) -> core::any::TypeId
  470. impl<T> core::borrow::Borrow<T> for aya::maps::perf::Events where T: core::marker::Sized
  471. pub fn aya::maps::perf::Events::borrow(&self) -> &T
  472. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::Events where T: core::marker::Sized
  473. pub fn aya::maps::perf::Events::borrow_mut(&mut self) -> &mut T
  474. impl<T> core::convert::From<T> for aya::maps::perf::Events
  475. pub fn aya::maps::perf::Events::from(t: T) -> T
  476. pub struct aya::maps::perf::PerfEventArray<T>
  477. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  478. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  479. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  480. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  481. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  482. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  483. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  484. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  485. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  486. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  487. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  488. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Send + core::marker::Sync
  489. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Send + core::marker::Sync
  490. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  491. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  492. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  493. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  494. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  495. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  496. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  497. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  498. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  499. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  500. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  501. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + core::marker::Sized
  502. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  503. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sized
  504. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  505. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sized
  506. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  507. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  508. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  509. pub struct aya::maps::perf::PerfEventArrayBuffer<T>
  510. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArrayBuffer<T>
  511. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::read_events(&mut self, out_bufs: &mut [bytes::bytes_mut::BytesMut]) -> core::result::Result<aya::maps::perf::Events, aya::maps::perf::PerfBufferError>
  512. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::readable(&self) -> bool
  513. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> std::os::fd::raw::AsRawFd for aya::maps::perf::PerfEventArrayBuffer<T>
  514. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::as_raw_fd(&self) -> std::os::fd::raw::RawFd
  515. impl<T> core::marker::Send for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Send + core::marker::Sync
  516. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Send + core::marker::Sync
  517. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArrayBuffer<T>
  518. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  519. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::panic::unwind_safe::RefUnwindSafe
  520. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::From<T>
  521. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::into(self) -> U
  522. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::Into<T>
  523. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = core::convert::Infallible
  524. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  525. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArrayBuffer<T> where U: core::convert::TryFrom<T>
  526. pub type aya::maps::perf::PerfEventArrayBuffer<T>::Error = <U as core::convert::TryFrom<T>>::Error
  527. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  528. impl<T> core::any::Any for aya::maps::perf::PerfEventArrayBuffer<T> where T: 'static + core::marker::Sized
  529. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::type_id(&self) -> core::any::TypeId
  530. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sized
  531. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow(&self) -> &T
  532. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArrayBuffer<T> where T: core::marker::Sized
  533. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::borrow_mut(&mut self) -> &mut T
  534. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArrayBuffer<T>
  535. pub fn aya::maps::perf::PerfEventArrayBuffer<T>::from(t: T) -> T
  536. pub mod aya::maps::queue
  537. pub struct aya::maps::queue::Queue<T, V: aya::Pod>
  538. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  539. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  540. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  541. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  542. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  543. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  544. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  545. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  546. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  547. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  548. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  549. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  550. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  551. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  552. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  553. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  554. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  555. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  556. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  557. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  558. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  559. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  560. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  561. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  562. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  563. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  564. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  565. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  566. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  567. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + core::marker::Sized
  568. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  569. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: core::marker::Sized
  570. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  571. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: core::marker::Sized
  572. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  573. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  574. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  575. pub mod aya::maps::sock
  576. pub struct aya::maps::sock::SockHash<T, K>
  577. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  578. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  579. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  580. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  581. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  582. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  583. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  584. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  585. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  586. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  587. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  588. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  589. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  590. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  591. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  592. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  593. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  594. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  595. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  596. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  597. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  598. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  599. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where K: core::marker::Send, T: core::marker::Send
  600. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where K: core::marker::Sync, T: core::marker::Sync
  601. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where K: core::marker::Unpin, T: core::marker::Unpin
  602. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe
  603. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe
  604. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  605. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  606. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  607. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  608. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  609. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  610. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  611. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  612. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + core::marker::Sized
  613. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  614. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: core::marker::Sized
  615. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  616. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: core::marker::Sized
  617. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  618. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  619. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  620. pub struct aya::maps::sock::SockMap<T>
  621. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  622. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  623. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  624. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  625. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  626. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  627. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  628. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  629. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  630. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  631. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  632. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  633. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  634. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  635. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  636. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  637. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  638. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  639. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  640. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  641. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  642. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  643. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  644. pub fn aya::maps::SockMap<T>::into(self) -> U
  645. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  646. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  647. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  648. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  649. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  650. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  651. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + core::marker::Sized
  652. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  653. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: core::marker::Sized
  654. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  655. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: core::marker::Sized
  656. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  657. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  658. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  659. #[repr(transparent)] pub struct aya::maps::sock::SockMapFd(_)
  660. impl aya::maps::sock::SockMapFd
  661. pub fn aya::maps::sock::SockMapFd::try_clone(&self) -> std::io::error::Result<Self>
  662. impl std::os::fd::owned::AsFd for aya::maps::sock::SockMapFd
  663. pub fn aya::maps::sock::SockMapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  664. impl core::marker::Send for aya::maps::sock::SockMapFd
  665. impl core::marker::Sync for aya::maps::sock::SockMapFd
  666. impl core::marker::Unpin for aya::maps::sock::SockMapFd
  667. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::sock::SockMapFd
  668. impl core::panic::unwind_safe::UnwindSafe for aya::maps::sock::SockMapFd
  669. impl<T, U> core::convert::Into<U> for aya::maps::sock::SockMapFd where U: core::convert::From<T>
  670. pub fn aya::maps::sock::SockMapFd::into(self) -> U
  671. impl<T, U> core::convert::TryFrom<U> for aya::maps::sock::SockMapFd where U: core::convert::Into<T>
  672. pub type aya::maps::sock::SockMapFd::Error = core::convert::Infallible
  673. pub fn aya::maps::sock::SockMapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  674. impl<T, U> core::convert::TryInto<U> for aya::maps::sock::SockMapFd where U: core::convert::TryFrom<T>
  675. pub type aya::maps::sock::SockMapFd::Error = <U as core::convert::TryFrom<T>>::Error
  676. pub fn aya::maps::sock::SockMapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  677. impl<T> core::any::Any for aya::maps::sock::SockMapFd where T: 'static + core::marker::Sized
  678. pub fn aya::maps::sock::SockMapFd::type_id(&self) -> core::any::TypeId
  679. impl<T> core::borrow::Borrow<T> for aya::maps::sock::SockMapFd where T: core::marker::Sized
  680. pub fn aya::maps::sock::SockMapFd::borrow(&self) -> &T
  681. impl<T> core::borrow::BorrowMut<T> for aya::maps::sock::SockMapFd where T: core::marker::Sized
  682. pub fn aya::maps::sock::SockMapFd::borrow_mut(&mut self) -> &mut T
  683. impl<T> core::convert::From<T> for aya::maps::sock::SockMapFd
  684. pub fn aya::maps::sock::SockMapFd::from(t: T) -> T
  685. pub mod aya::maps::stack
  686. pub struct aya::maps::stack::Stack<T, V: aya::Pod>
  687. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  688. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  689. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  690. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  691. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  692. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  693. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  694. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  695. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  696. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  697. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  698. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  699. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  700. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  701. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  702. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  703. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  704. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  705. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  706. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  707. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  708. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  709. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  710. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  711. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  712. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  713. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  714. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  715. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  716. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + core::marker::Sized
  717. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  718. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: core::marker::Sized
  719. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  720. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: core::marker::Sized
  721. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  722. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  723. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  724. pub mod aya::maps::stack_trace
  725. pub struct aya::maps::stack_trace::StackFrame
  726. pub aya::maps::stack_trace::StackFrame::ip: u64
  727. impl core::marker::Send for aya::maps::stack_trace::StackFrame
  728. impl core::marker::Sync for aya::maps::stack_trace::StackFrame
  729. impl core::marker::Unpin for aya::maps::stack_trace::StackFrame
  730. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackFrame
  731. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackFrame
  732. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackFrame where U: core::convert::From<T>
  733. pub fn aya::maps::stack_trace::StackFrame::into(self) -> U
  734. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackFrame where U: core::convert::Into<T>
  735. pub type aya::maps::stack_trace::StackFrame::Error = core::convert::Infallible
  736. pub fn aya::maps::stack_trace::StackFrame::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  737. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackFrame where U: core::convert::TryFrom<T>
  738. pub type aya::maps::stack_trace::StackFrame::Error = <U as core::convert::TryFrom<T>>::Error
  739. pub fn aya::maps::stack_trace::StackFrame::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  740. impl<T> core::any::Any for aya::maps::stack_trace::StackFrame where T: 'static + core::marker::Sized
  741. pub fn aya::maps::stack_trace::StackFrame::type_id(&self) -> core::any::TypeId
  742. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackFrame where T: core::marker::Sized
  743. pub fn aya::maps::stack_trace::StackFrame::borrow(&self) -> &T
  744. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackFrame where T: core::marker::Sized
  745. pub fn aya::maps::stack_trace::StackFrame::borrow_mut(&mut self) -> &mut T
  746. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackFrame
  747. pub fn aya::maps::stack_trace::StackFrame::from(t: T) -> T
  748. pub struct aya::maps::stack_trace::StackTrace
  749. pub aya::maps::stack_trace::StackTrace::id: u32
  750. impl aya::maps::stack_trace::StackTrace
  751. pub fn aya::maps::stack_trace::StackTrace::frames(&self) -> &[aya::maps::stack_trace::StackFrame]
  752. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  753. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  754. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  755. impl core::marker::Send for aya::maps::stack_trace::StackTrace
  756. impl core::marker::Sync for aya::maps::stack_trace::StackTrace
  757. impl core::marker::Unpin for aya::maps::stack_trace::StackTrace
  758. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTrace
  759. impl core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTrace
  760. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTrace where U: core::convert::From<T>
  761. pub fn aya::maps::stack_trace::StackTrace::into(self) -> U
  762. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTrace where U: core::convert::Into<T>
  763. pub type aya::maps::stack_trace::StackTrace::Error = core::convert::Infallible
  764. pub fn aya::maps::stack_trace::StackTrace::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  765. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTrace where U: core::convert::TryFrom<T>
  766. pub type aya::maps::stack_trace::StackTrace::Error = <U as core::convert::TryFrom<T>>::Error
  767. pub fn aya::maps::stack_trace::StackTrace::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  768. impl<T> core::any::Any for aya::maps::stack_trace::StackTrace where T: 'static + core::marker::Sized
  769. pub fn aya::maps::stack_trace::StackTrace::type_id(&self) -> core::any::TypeId
  770. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTrace where T: core::marker::Sized
  771. pub fn aya::maps::stack_trace::StackTrace::borrow(&self) -> &T
  772. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTrace where T: core::marker::Sized
  773. pub fn aya::maps::stack_trace::StackTrace::borrow_mut(&mut self) -> &mut T
  774. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTrace
  775. pub fn aya::maps::stack_trace::StackTrace::from(t: T) -> T
  776. pub struct aya::maps::stack_trace::StackTraceMap<T>
  777. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  778. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  779. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  780. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  781. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  782. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  783. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  784. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  785. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  786. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  787. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  788. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  789. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  790. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  791. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  792. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  793. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  794. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  795. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  796. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  797. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  798. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  799. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  800. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  801. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  802. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  803. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  804. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  805. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  806. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  807. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  808. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  809. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  810. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  811. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  812. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  813. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  814. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + core::marker::Sized
  815. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  816. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sized
  817. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  818. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sized
  819. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  820. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  821. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  822. pub mod aya::maps::xdp
  823. pub enum aya::maps::xdp::XdpMapError
  824. pub aya::maps::xdp::XdpMapError::ChainedProgramNotSupported
  825. pub aya::maps::xdp::XdpMapError::MapError(aya::maps::MapError)
  826. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  827. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  828. impl core::error::Error for aya::maps::xdp::XdpMapError
  829. pub fn aya::maps::xdp::XdpMapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  830. impl core::fmt::Display for aya::maps::xdp::XdpMapError
  831. pub fn aya::maps::xdp::XdpMapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  832. impl core::fmt::Debug for aya::maps::xdp::XdpMapError
  833. pub fn aya::maps::xdp::XdpMapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  834. impl core::marker::Send for aya::maps::xdp::XdpMapError
  835. impl core::marker::Sync for aya::maps::xdp::XdpMapError
  836. impl core::marker::Unpin for aya::maps::xdp::XdpMapError
  837. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::xdp::XdpMapError
  838. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::xdp::XdpMapError
  839. impl<T, U> core::convert::Into<U> for aya::maps::xdp::XdpMapError where U: core::convert::From<T>
  840. pub fn aya::maps::xdp::XdpMapError::into(self) -> U
  841. impl<T, U> core::convert::TryFrom<U> for aya::maps::xdp::XdpMapError where U: core::convert::Into<T>
  842. pub type aya::maps::xdp::XdpMapError::Error = core::convert::Infallible
  843. pub fn aya::maps::xdp::XdpMapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  844. impl<T, U> core::convert::TryInto<U> for aya::maps::xdp::XdpMapError where U: core::convert::TryFrom<T>
  845. pub type aya::maps::xdp::XdpMapError::Error = <U as core::convert::TryFrom<T>>::Error
  846. pub fn aya::maps::xdp::XdpMapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  847. impl<T> alloc::string::ToString for aya::maps::xdp::XdpMapError where T: core::fmt::Display + core::marker::Sized
  848. pub fn aya::maps::xdp::XdpMapError::to_string(&self) -> alloc::string::String
  849. impl<T> core::any::Any for aya::maps::xdp::XdpMapError where T: 'static + core::marker::Sized
  850. pub fn aya::maps::xdp::XdpMapError::type_id(&self) -> core::any::TypeId
  851. impl<T> core::borrow::Borrow<T> for aya::maps::xdp::XdpMapError where T: core::marker::Sized
  852. pub fn aya::maps::xdp::XdpMapError::borrow(&self) -> &T
  853. impl<T> core::borrow::BorrowMut<T> for aya::maps::xdp::XdpMapError where T: core::marker::Sized
  854. pub fn aya::maps::xdp::XdpMapError::borrow_mut(&mut self) -> &mut T
  855. impl<T> core::convert::From<T> for aya::maps::xdp::XdpMapError
  856. pub fn aya::maps::xdp::XdpMapError::from(t: T) -> T
  857. pub struct aya::maps::xdp::CpuMap<T>
  858. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  859. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<CpuMapValue, aya::maps::MapError>
  860. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<CpuMapValue, aya::maps::MapError>> + '_
  861. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  862. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  863. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  864. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  865. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  866. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  867. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  868. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  869. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  870. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  871. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  872. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  873. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  874. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  875. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  876. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  877. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  878. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  879. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  880. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  881. pub fn aya::maps::CpuMap<T>::into(self) -> U
  882. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  883. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  884. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  885. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  886. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  887. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  888. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + core::marker::Sized
  889. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  890. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: core::marker::Sized
  891. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  892. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: core::marker::Sized
  893. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  894. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  895. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  896. pub struct aya::maps::xdp::DevMap<T>
  897. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  898. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<DevMapValue, aya::maps::MapError>
  899. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<DevMapValue, aya::maps::MapError>> + '_
  900. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  901. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  902. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  903. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  904. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  905. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  906. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  907. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  908. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  909. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  910. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  911. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  912. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  913. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  914. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  915. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  916. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  917. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  918. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  919. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  920. pub fn aya::maps::DevMap<T>::into(self) -> U
  921. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  922. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  923. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  924. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  925. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  926. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  927. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + core::marker::Sized
  928. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  929. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: core::marker::Sized
  930. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  931. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: core::marker::Sized
  932. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  933. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  934. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  935. pub struct aya::maps::xdp::DevMapHash<T>
  936. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  937. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<DevMapValue, aya::maps::MapError>
  938. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, DevMapValue, Self>
  939. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  940. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  941. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  942. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  943. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  944. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  945. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  946. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  947. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  948. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  949. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  950. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  951. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  952. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  953. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  954. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  955. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  956. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  957. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  958. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  959. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  960. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  961. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  962. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  963. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  964. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  965. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  966. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  967. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + core::marker::Sized
  968. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  969. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: core::marker::Sized
  970. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  971. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: core::marker::Sized
  972. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  973. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  974. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  975. pub struct aya::maps::xdp::XskMap<T>
  976. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  977. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  978. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  979. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  980. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  981. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  982. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  983. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  984. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  985. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  986. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  987. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  988. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  989. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  990. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  991. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  992. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  993. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  994. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  995. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  996. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  997. pub fn aya::maps::XskMap<T>::into(self) -> U
  998. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  999. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  1000. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1001. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  1002. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1003. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1004. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + core::marker::Sized
  1005. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  1006. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: core::marker::Sized
  1007. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  1008. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: core::marker::Sized
  1009. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  1010. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  1011. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  1012. pub enum aya::maps::Map
  1013. pub aya::maps::Map::Array(aya::maps::MapData)
  1014. pub aya::maps::Map::BloomFilter(aya::maps::MapData)
  1015. pub aya::maps::Map::CpuMap(aya::maps::MapData)
  1016. pub aya::maps::Map::DevMap(aya::maps::MapData)
  1017. pub aya::maps::Map::DevMapHash(aya::maps::MapData)
  1018. pub aya::maps::Map::HashMap(aya::maps::MapData)
  1019. pub aya::maps::Map::LpmTrie(aya::maps::MapData)
  1020. pub aya::maps::Map::LruHashMap(aya::maps::MapData)
  1021. pub aya::maps::Map::PerCpuArray(aya::maps::MapData)
  1022. pub aya::maps::Map::PerCpuHashMap(aya::maps::MapData)
  1023. pub aya::maps::Map::PerCpuLruHashMap(aya::maps::MapData)
  1024. pub aya::maps::Map::PerfEventArray(aya::maps::MapData)
  1025. pub aya::maps::Map::ProgramArray(aya::maps::MapData)
  1026. pub aya::maps::Map::Queue(aya::maps::MapData)
  1027. pub aya::maps::Map::SockHash(aya::maps::MapData)
  1028. pub aya::maps::Map::SockMap(aya::maps::MapData)
  1029. pub aya::maps::Map::Stack(aya::maps::MapData)
  1030. pub aya::maps::Map::StackTraceMap(aya::maps::MapData)
  1031. pub aya::maps::Map::Unsupported(aya::maps::MapData)
  1032. pub aya::maps::Map::XskMap(aya::maps::MapData)
  1033. impl aya::maps::Map
  1034. pub fn aya::maps::Map::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1035. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1036. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1037. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1038. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1039. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1040. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1041. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1042. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1043. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1044. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  1045. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  1046. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1047. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  1048. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  1049. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1050. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  1051. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  1052. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1053. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1054. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1055. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1056. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  1057. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1058. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1059. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  1060. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  1061. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1062. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1063. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1064. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1065. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  1066. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1067. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1068. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1069. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1070. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1071. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1072. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1073. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1074. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  1075. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1076. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1077. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1078. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1079. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1080. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1081. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1082. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1083. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  1084. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1085. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1086. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1087. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1088. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1089. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1090. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1091. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1092. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  1093. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1094. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1095. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  1096. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1097. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1098. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1099. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1100. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1101. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  1102. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1103. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1104. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1105. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1106. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1107. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1108. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1109. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1110. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  1111. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1112. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1113. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  1114. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1115. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1116. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1117. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1118. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1119. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1120. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1121. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1122. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1123. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1124. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1125. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  1126. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1127. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1128. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  1129. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1130. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1131. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  1132. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1133. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1134. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1135. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1136. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1137. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  1138. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1139. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1140. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  1141. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1142. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1143. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1144. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1145. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1146. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1147. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1148. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1149. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1150. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1151. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1152. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  1153. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1154. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1155. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  1156. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1157. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1158. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  1159. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1160. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1161. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1162. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1163. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1164. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  1165. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1166. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1167. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  1168. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1169. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1170. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1171. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1172. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1173. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1174. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1175. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1176. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1177. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1178. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1179. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1180. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1181. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1182. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  1183. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  1184. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1185. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1186. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1187. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1188. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1189. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1190. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1191. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  1192. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  1193. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1194. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  1195. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  1196. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1197. impl core::fmt::Debug for aya::maps::Map
  1198. pub fn aya::maps::Map::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1199. impl core::marker::Send for aya::maps::Map
  1200. impl core::marker::Sync for aya::maps::Map
  1201. impl core::marker::Unpin for aya::maps::Map
  1202. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::Map
  1203. impl core::panic::unwind_safe::UnwindSafe for aya::maps::Map
  1204. impl<T, U> core::convert::Into<U> for aya::maps::Map where U: core::convert::From<T>
  1205. pub fn aya::maps::Map::into(self) -> U
  1206. impl<T, U> core::convert::TryFrom<U> for aya::maps::Map where U: core::convert::Into<T>
  1207. pub type aya::maps::Map::Error = core::convert::Infallible
  1208. pub fn aya::maps::Map::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1209. impl<T, U> core::convert::TryInto<U> for aya::maps::Map where U: core::convert::TryFrom<T>
  1210. pub type aya::maps::Map::Error = <U as core::convert::TryFrom<T>>::Error
  1211. pub fn aya::maps::Map::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1212. impl<T> core::any::Any for aya::maps::Map where T: 'static + core::marker::Sized
  1213. pub fn aya::maps::Map::type_id(&self) -> core::any::TypeId
  1214. impl<T> core::borrow::Borrow<T> for aya::maps::Map where T: core::marker::Sized
  1215. pub fn aya::maps::Map::borrow(&self) -> &T
  1216. impl<T> core::borrow::BorrowMut<T> for aya::maps::Map where T: core::marker::Sized
  1217. pub fn aya::maps::Map::borrow_mut(&mut self) -> &mut T
  1218. impl<T> core::convert::From<T> for aya::maps::Map
  1219. pub fn aya::maps::Map::from(t: T) -> T
  1220. pub enum aya::maps::MapError
  1221. pub aya::maps::MapError::CreateError
  1222. pub aya::maps::MapError::CreateError::code: core::ffi::c_long
  1223. pub aya::maps::MapError::CreateError::io_error: std::io::error::Error
  1224. pub aya::maps::MapError::CreateError::name: alloc::string::String
  1225. pub aya::maps::MapError::ElementNotFound
  1226. pub aya::maps::MapError::InvalidKeySize
  1227. pub aya::maps::MapError::InvalidKeySize::expected: usize
  1228. pub aya::maps::MapError::InvalidKeySize::size: usize
  1229. pub aya::maps::MapError::InvalidMapType
  1230. pub aya::maps::MapError::InvalidMapType::map_type: u32
  1231. pub aya::maps::MapError::InvalidName
  1232. pub aya::maps::MapError::InvalidName::name: alloc::string::String
  1233. pub aya::maps::MapError::InvalidValueSize
  1234. pub aya::maps::MapError::InvalidValueSize::expected: usize
  1235. pub aya::maps::MapError::InvalidValueSize::size: usize
  1236. pub aya::maps::MapError::KeyNotFound
  1237. pub aya::maps::MapError::OutOfBounds
  1238. pub aya::maps::MapError::OutOfBounds::index: u32
  1239. pub aya::maps::MapError::OutOfBounds::max_entries: u32
  1240. pub aya::maps::MapError::PinError
  1241. pub aya::maps::MapError::PinError::error: aya::pin::PinError
  1242. pub aya::maps::MapError::PinError::name: core::option::Option<alloc::string::String>
  1243. pub aya::maps::MapError::ProgIdNotSupported
  1244. pub aya::maps::MapError::ProgramNotLoaded
  1245. pub aya::maps::MapError::SyscallError(crate::sys::SyscallError)
  1246. pub aya::maps::MapError::Unsupported
  1247. pub aya::maps::MapError::Unsupported::map_type: u32
  1248. impl core::convert::From<aya::maps::MapError> for aya::BpfError
  1249. pub fn aya::BpfError::from(source: aya::maps::MapError) -> Self
  1250. impl core::convert::From<aya::maps::MapError> for aya::maps::xdp::XdpMapError
  1251. pub fn aya::maps::xdp::XdpMapError::from(source: aya::maps::MapError) -> Self
  1252. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  1253. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  1254. impl core::error::Error for aya::maps::MapError
  1255. pub fn aya::maps::MapError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  1256. impl core::fmt::Display for aya::maps::MapError
  1257. pub fn aya::maps::MapError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1258. impl core::fmt::Debug for aya::maps::MapError
  1259. pub fn aya::maps::MapError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1260. impl core::marker::Send for aya::maps::MapError
  1261. impl core::marker::Sync for aya::maps::MapError
  1262. impl core::marker::Unpin for aya::maps::MapError
  1263. impl !core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapError
  1264. impl !core::panic::unwind_safe::UnwindSafe for aya::maps::MapError
  1265. impl<T, U> core::convert::Into<U> for aya::maps::MapError where U: core::convert::From<T>
  1266. pub fn aya::maps::MapError::into(self) -> U
  1267. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapError where U: core::convert::Into<T>
  1268. pub type aya::maps::MapError::Error = core::convert::Infallible
  1269. pub fn aya::maps::MapError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1270. impl<T, U> core::convert::TryInto<U> for aya::maps::MapError where U: core::convert::TryFrom<T>
  1271. pub type aya::maps::MapError::Error = <U as core::convert::TryFrom<T>>::Error
  1272. pub fn aya::maps::MapError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1273. impl<T> alloc::string::ToString for aya::maps::MapError where T: core::fmt::Display + core::marker::Sized
  1274. pub fn aya::maps::MapError::to_string(&self) -> alloc::string::String
  1275. impl<T> core::any::Any for aya::maps::MapError where T: 'static + core::marker::Sized
  1276. pub fn aya::maps::MapError::type_id(&self) -> core::any::TypeId
  1277. impl<T> core::borrow::Borrow<T> for aya::maps::MapError where T: core::marker::Sized
  1278. pub fn aya::maps::MapError::borrow(&self) -> &T
  1279. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapError where T: core::marker::Sized
  1280. pub fn aya::maps::MapError::borrow_mut(&mut self) -> &mut T
  1281. impl<T> core::convert::From<T> for aya::maps::MapError
  1282. pub fn aya::maps::MapError::from(t: T) -> T
  1283. pub struct aya::maps::Array<T, V: aya::Pod>
  1284. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1285. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1286. pub fn aya::maps::array::Array<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<V, aya::maps::MapError>> + '_
  1287. pub fn aya::maps::array::Array<T, V>::len(&self) -> u32
  1288. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1289. pub fn aya::maps::array::Array<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1290. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::array::Array<T, V>
  1291. pub fn aya::maps::array::Array<T, V>::set(&mut self, index: u32, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1292. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::array::Array<&'a aya::maps::MapData, V>
  1293. pub type aya::maps::array::Array<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1294. pub fn aya::maps::array::Array<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1295. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::array::Array<&'a mut aya::maps::MapData, V>
  1296. pub type aya::maps::array::Array<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1297. pub fn aya::maps::array::Array<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1298. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  1299. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  1300. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  1301. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::array::Array<aya::maps::MapData, V>
  1302. pub type aya::maps::array::Array<aya::maps::MapData, V>::Error = aya::maps::MapError
  1303. pub fn aya::maps::array::Array<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1304. impl<T, V> core::marker::Send for aya::maps::array::Array<T, V> where T: core::marker::Send, V: core::marker::Send
  1305. impl<T, V> core::marker::Sync for aya::maps::array::Array<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1306. impl<T, V> core::marker::Unpin for aya::maps::array::Array<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1307. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1308. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::array::Array<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1309. impl<T, U> core::convert::Into<U> for aya::maps::array::Array<T, V> where U: core::convert::From<T>
  1310. pub fn aya::maps::array::Array<T, V>::into(self) -> U
  1311. impl<T, U> core::convert::TryFrom<U> for aya::maps::array::Array<T, V> where U: core::convert::Into<T>
  1312. pub type aya::maps::array::Array<T, V>::Error = core::convert::Infallible
  1313. pub fn aya::maps::array::Array<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1314. impl<T, U> core::convert::TryInto<U> for aya::maps::array::Array<T, V> where U: core::convert::TryFrom<T>
  1315. pub type aya::maps::array::Array<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1316. pub fn aya::maps::array::Array<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1317. impl<T> core::any::Any for aya::maps::array::Array<T, V> where T: 'static + core::marker::Sized
  1318. pub fn aya::maps::array::Array<T, V>::type_id(&self) -> core::any::TypeId
  1319. impl<T> core::borrow::Borrow<T> for aya::maps::array::Array<T, V> where T: core::marker::Sized
  1320. pub fn aya::maps::array::Array<T, V>::borrow(&self) -> &T
  1321. impl<T> core::borrow::BorrowMut<T> for aya::maps::array::Array<T, V> where T: core::marker::Sized
  1322. pub fn aya::maps::array::Array<T, V>::borrow_mut(&mut self) -> &mut T
  1323. impl<T> core::convert::From<T> for aya::maps::array::Array<T, V>
  1324. pub fn aya::maps::array::Array<T, V>::from(t: T) -> T
  1325. pub struct aya::maps::AsyncPerfEventArray<T>
  1326. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::AsyncPerfEventArray<T>
  1327. pub fn aya::maps::perf::AsyncPerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::AsyncPerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  1328. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>
  1329. pub type aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1330. pub fn aya::maps::perf::AsyncPerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1331. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>
  1332. pub type aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1333. pub fn aya::maps::perf::AsyncPerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1334. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>
  1335. pub type aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1336. pub fn aya::maps::perf::AsyncPerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1337. impl<T> core::marker::Send for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Send + core::marker::Sync
  1338. impl<T> core::marker::Sync for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Send + core::marker::Sync
  1339. impl<T> core::marker::Unpin for aya::maps::perf::AsyncPerfEventArray<T>
  1340. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1341. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::AsyncPerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1342. impl<T, U> core::convert::Into<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::From<T>
  1343. pub fn aya::maps::perf::AsyncPerfEventArray<T>::into(self) -> U
  1344. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::Into<T>
  1345. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = core::convert::Infallible
  1346. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1347. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::AsyncPerfEventArray<T> where U: core::convert::TryFrom<T>
  1348. pub type aya::maps::perf::AsyncPerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1349. pub fn aya::maps::perf::AsyncPerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1350. impl<T> core::any::Any for aya::maps::perf::AsyncPerfEventArray<T> where T: 'static + core::marker::Sized
  1351. pub fn aya::maps::perf::AsyncPerfEventArray<T>::type_id(&self) -> core::any::TypeId
  1352. impl<T> core::borrow::Borrow<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sized
  1353. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow(&self) -> &T
  1354. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::AsyncPerfEventArray<T> where T: core::marker::Sized
  1355. pub fn aya::maps::perf::AsyncPerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  1356. impl<T> core::convert::From<T> for aya::maps::perf::AsyncPerfEventArray<T>
  1357. pub fn aya::maps::perf::AsyncPerfEventArray<T>::from(t: T) -> T
  1358. pub struct aya::maps::BloomFilter<T, V: aya::Pod>
  1359. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1360. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::contains(&self, value: &V, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1361. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1362. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::insert(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1363. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::bloom_filter::BloomFilter<T, V>
  1364. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1365. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>
  1366. pub type aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1367. pub fn aya::maps::bloom_filter::BloomFilter<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1368. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>
  1369. pub type aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1370. pub fn aya::maps::bloom_filter::BloomFilter<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1371. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>
  1372. pub type aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::Error = aya::maps::MapError
  1373. pub fn aya::maps::bloom_filter::BloomFilter<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1374. impl<T: core::fmt::Debug, V: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::bloom_filter::BloomFilter<T, V>
  1375. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1376. impl<T, V> core::marker::Send for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Send, V: core::marker::Send
  1377. impl<T, V> core::marker::Sync for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1378. impl<T, V> core::marker::Unpin for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1379. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1380. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1381. impl<T, U> core::convert::Into<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::From<T>
  1382. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::into(self) -> U
  1383. impl<T, U> core::convert::TryFrom<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::Into<T>
  1384. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = core::convert::Infallible
  1385. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1386. impl<T, U> core::convert::TryInto<U> for aya::maps::bloom_filter::BloomFilter<T, V> where U: core::convert::TryFrom<T>
  1387. pub type aya::maps::bloom_filter::BloomFilter<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1388. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1389. impl<T> core::any::Any for aya::maps::bloom_filter::BloomFilter<T, V> where T: 'static + core::marker::Sized
  1390. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::type_id(&self) -> core::any::TypeId
  1391. impl<T> core::borrow::Borrow<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sized
  1392. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow(&self) -> &T
  1393. impl<T> core::borrow::BorrowMut<T> for aya::maps::bloom_filter::BloomFilter<T, V> where T: core::marker::Sized
  1394. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::borrow_mut(&mut self) -> &mut T
  1395. impl<T> core::convert::From<T> for aya::maps::bloom_filter::BloomFilter<T, V>
  1396. pub fn aya::maps::bloom_filter::BloomFilter<T, V>::from(t: T) -> T
  1397. pub struct aya::maps::CpuMap<T>
  1398. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::CpuMap<T>
  1399. pub fn aya::maps::CpuMap<T>::get(&self, cpu_index: u32, flags: u64) -> core::result::Result<CpuMapValue, aya::maps::MapError>
  1400. pub fn aya::maps::CpuMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<CpuMapValue, aya::maps::MapError>> + '_
  1401. pub fn aya::maps::CpuMap<T>::len(&self) -> u32
  1402. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  1403. pub fn aya::maps::CpuMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1404. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::CpuMap<T>
  1405. pub fn aya::maps::CpuMap<T>::set(&mut self, cpu_index: u32, queue_size: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1406. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::CpuMap<aya::maps::MapData>
  1407. pub type aya::maps::CpuMap<aya::maps::MapData>::Error = aya::maps::MapError
  1408. pub fn aya::maps::CpuMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1409. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::CpuMap<&'a aya::maps::MapData>
  1410. pub type aya::maps::CpuMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1411. pub fn aya::maps::CpuMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1412. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::CpuMap<&'a mut aya::maps::MapData>
  1413. pub type aya::maps::CpuMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1414. pub fn aya::maps::CpuMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1415. impl<T> core::marker::Send for aya::maps::CpuMap<T> where T: core::marker::Send
  1416. impl<T> core::marker::Sync for aya::maps::CpuMap<T> where T: core::marker::Sync
  1417. impl<T> core::marker::Unpin for aya::maps::CpuMap<T> where T: core::marker::Unpin
  1418. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1419. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::CpuMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1420. impl<T, U> core::convert::Into<U> for aya::maps::CpuMap<T> where U: core::convert::From<T>
  1421. pub fn aya::maps::CpuMap<T>::into(self) -> U
  1422. impl<T, U> core::convert::TryFrom<U> for aya::maps::CpuMap<T> where U: core::convert::Into<T>
  1423. pub type aya::maps::CpuMap<T>::Error = core::convert::Infallible
  1424. pub fn aya::maps::CpuMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1425. impl<T, U> core::convert::TryInto<U> for aya::maps::CpuMap<T> where U: core::convert::TryFrom<T>
  1426. pub type aya::maps::CpuMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1427. pub fn aya::maps::CpuMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1428. impl<T> core::any::Any for aya::maps::CpuMap<T> where T: 'static + core::marker::Sized
  1429. pub fn aya::maps::CpuMap<T>::type_id(&self) -> core::any::TypeId
  1430. impl<T> core::borrow::Borrow<T> for aya::maps::CpuMap<T> where T: core::marker::Sized
  1431. pub fn aya::maps::CpuMap<T>::borrow(&self) -> &T
  1432. impl<T> core::borrow::BorrowMut<T> for aya::maps::CpuMap<T> where T: core::marker::Sized
  1433. pub fn aya::maps::CpuMap<T>::borrow_mut(&mut self) -> &mut T
  1434. impl<T> core::convert::From<T> for aya::maps::CpuMap<T>
  1435. pub fn aya::maps::CpuMap<T>::from(t: T) -> T
  1436. pub struct aya::maps::DevMap<T>
  1437. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMap<T>
  1438. pub fn aya::maps::DevMap<T>::get(&self, index: u32, flags: u64) -> core::result::Result<DevMapValue, aya::maps::MapError>
  1439. pub fn aya::maps::DevMap<T>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<DevMapValue, aya::maps::MapError>> + '_
  1440. pub fn aya::maps::DevMap<T>::len(&self) -> u32
  1441. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1442. pub fn aya::maps::DevMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1443. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMap<T>
  1444. pub fn aya::maps::DevMap<T>::set(&mut self, index: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1445. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMap<aya::maps::MapData>
  1446. pub type aya::maps::DevMap<aya::maps::MapData>::Error = aya::maps::MapError
  1447. pub fn aya::maps::DevMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1448. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMap<&'a aya::maps::MapData>
  1449. pub type aya::maps::DevMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1450. pub fn aya::maps::DevMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1451. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMap<&'a mut aya::maps::MapData>
  1452. pub type aya::maps::DevMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1453. pub fn aya::maps::DevMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1454. impl<T> core::marker::Send for aya::maps::DevMap<T> where T: core::marker::Send
  1455. impl<T> core::marker::Sync for aya::maps::DevMap<T> where T: core::marker::Sync
  1456. impl<T> core::marker::Unpin for aya::maps::DevMap<T> where T: core::marker::Unpin
  1457. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1458. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMap<T> where T: core::panic::unwind_safe::UnwindSafe
  1459. impl<T, U> core::convert::Into<U> for aya::maps::DevMap<T> where U: core::convert::From<T>
  1460. pub fn aya::maps::DevMap<T>::into(self) -> U
  1461. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMap<T> where U: core::convert::Into<T>
  1462. pub type aya::maps::DevMap<T>::Error = core::convert::Infallible
  1463. pub fn aya::maps::DevMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1464. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMap<T> where U: core::convert::TryFrom<T>
  1465. pub type aya::maps::DevMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1466. pub fn aya::maps::DevMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1467. impl<T> core::any::Any for aya::maps::DevMap<T> where T: 'static + core::marker::Sized
  1468. pub fn aya::maps::DevMap<T>::type_id(&self) -> core::any::TypeId
  1469. impl<T> core::borrow::Borrow<T> for aya::maps::DevMap<T> where T: core::marker::Sized
  1470. pub fn aya::maps::DevMap<T>::borrow(&self) -> &T
  1471. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMap<T> where T: core::marker::Sized
  1472. pub fn aya::maps::DevMap<T>::borrow_mut(&mut self) -> &mut T
  1473. impl<T> core::convert::From<T> for aya::maps::DevMap<T>
  1474. pub fn aya::maps::DevMap<T>::from(t: T) -> T
  1475. pub struct aya::maps::DevMapHash<T>
  1476. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1477. pub fn aya::maps::DevMapHash<T>::get(&self, key: u32, flags: u64) -> core::result::Result<DevMapValue, aya::maps::MapError>
  1478. pub fn aya::maps::DevMapHash<T>::iter(&self) -> aya::maps::MapIter<'_, u32, DevMapValue, Self>
  1479. pub fn aya::maps::DevMapHash<T>::keys(&self) -> aya::maps::MapKeys<'_, u32>
  1480. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1481. pub fn aya::maps::DevMapHash<T>::insert(&mut self, key: u32, target_if_index: u32, program: core::option::Option<&aya::programs::ProgramFd>, flags: u64) -> core::result::Result<(), aya::maps::xdp::XdpMapError>
  1482. pub fn aya::maps::DevMapHash<T>::remove(&mut self, key: u32) -> core::result::Result<(), aya::maps::MapError>
  1483. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::DevMapHash<T>
  1484. pub fn aya::maps::DevMapHash<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1485. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::DevMapHash<aya::maps::MapData>
  1486. pub type aya::maps::DevMapHash<aya::maps::MapData>::Error = aya::maps::MapError
  1487. pub fn aya::maps::DevMapHash<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1488. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::DevMapHash<&'a aya::maps::MapData>
  1489. pub type aya::maps::DevMapHash<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1490. pub fn aya::maps::DevMapHash<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1491. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::DevMapHash<&'a mut aya::maps::MapData>
  1492. pub type aya::maps::DevMapHash<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1493. pub fn aya::maps::DevMapHash<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1494. impl<T> core::marker::Send for aya::maps::DevMapHash<T> where T: core::marker::Send
  1495. impl<T> core::marker::Sync for aya::maps::DevMapHash<T> where T: core::marker::Sync
  1496. impl<T> core::marker::Unpin for aya::maps::DevMapHash<T> where T: core::marker::Unpin
  1497. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1498. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::DevMapHash<T> where T: core::panic::unwind_safe::UnwindSafe
  1499. impl<T, U> core::convert::Into<U> for aya::maps::DevMapHash<T> where U: core::convert::From<T>
  1500. pub fn aya::maps::DevMapHash<T>::into(self) -> U
  1501. impl<T, U> core::convert::TryFrom<U> for aya::maps::DevMapHash<T> where U: core::convert::Into<T>
  1502. pub type aya::maps::DevMapHash<T>::Error = core::convert::Infallible
  1503. pub fn aya::maps::DevMapHash<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1504. impl<T, U> core::convert::TryInto<U> for aya::maps::DevMapHash<T> where U: core::convert::TryFrom<T>
  1505. pub type aya::maps::DevMapHash<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1506. pub fn aya::maps::DevMapHash<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1507. impl<T> core::any::Any for aya::maps::DevMapHash<T> where T: 'static + core::marker::Sized
  1508. pub fn aya::maps::DevMapHash<T>::type_id(&self) -> core::any::TypeId
  1509. impl<T> core::borrow::Borrow<T> for aya::maps::DevMapHash<T> where T: core::marker::Sized
  1510. pub fn aya::maps::DevMapHash<T>::borrow(&self) -> &T
  1511. impl<T> core::borrow::BorrowMut<T> for aya::maps::DevMapHash<T> where T: core::marker::Sized
  1512. pub fn aya::maps::DevMapHash<T>::borrow_mut(&mut self) -> &mut T
  1513. impl<T> core::convert::From<T> for aya::maps::DevMapHash<T>
  1514. pub fn aya::maps::DevMapHash<T>::from(t: T) -> T
  1515. pub struct aya::maps::HashMap<T, K, V>
  1516. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1517. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1518. pub fn aya::maps::hash_map::HashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, V, Self>
  1519. pub fn aya::maps::hash_map::HashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1520. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1521. pub fn aya::maps::hash_map::HashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1522. pub fn aya::maps::hash_map::HashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1523. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::HashMap<T, K, V>
  1524. pub fn aya::maps::hash_map::HashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1525. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>
  1526. pub type aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1527. pub fn aya::maps::hash_map::HashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1528. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>
  1529. pub type aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1530. pub fn aya::maps::hash_map::HashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1531. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>
  1532. pub type aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1533. pub fn aya::maps::hash_map::HashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1534. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  1535. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  1536. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1537. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::hash_map::HashMap<T, K, V>
  1538. pub fn aya::maps::hash_map::HashMap<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1539. impl<T, K, V> core::marker::Send for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  1540. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  1541. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::HashMap<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  1542. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1543. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::HashMap<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1544. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::From<T>
  1545. pub fn aya::maps::hash_map::HashMap<T, K, V>::into(self) -> U
  1546. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::Into<T>
  1547. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = core::convert::Infallible
  1548. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1549. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::HashMap<T, K, V> where U: core::convert::TryFrom<T>
  1550. pub type aya::maps::hash_map::HashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1551. pub fn aya::maps::hash_map::HashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1552. impl<T> core::any::Any for aya::maps::hash_map::HashMap<T, K, V> where T: 'static + core::marker::Sized
  1553. pub fn aya::maps::hash_map::HashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1554. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sized
  1555. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow(&self) -> &T
  1556. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::HashMap<T, K, V> where T: core::marker::Sized
  1557. pub fn aya::maps::hash_map::HashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1558. impl<T> core::convert::From<T> for aya::maps::hash_map::HashMap<T, K, V>
  1559. pub fn aya::maps::hash_map::HashMap<T, K, V>::from(t: T) -> T
  1560. pub struct aya::maps::LpmTrie<T, K, V>
  1561. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1562. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1563. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, aya::maps::lpm_trie::Key<K>, V, Self>
  1564. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, aya::maps::lpm_trie::Key<K>>
  1565. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1566. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::insert(&mut self, key: &aya::maps::lpm_trie::Key<K>, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1567. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::remove(&mut self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<(), aya::maps::MapError>
  1568. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::lpm_trie::LpmTrie<T, K, V>
  1569. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1570. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>
  1571. pub type aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1572. pub fn aya::maps::lpm_trie::LpmTrie<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1573. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>
  1574. pub type aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1575. pub fn aya::maps::lpm_trie::LpmTrie<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1576. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>
  1577. pub type aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1578. pub fn aya::maps::lpm_trie::LpmTrie<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1579. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1580. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  1581. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  1582. impl<T: core::fmt::Debug, K: core::fmt::Debug, V: core::fmt::Debug> core::fmt::Debug for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1583. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1584. impl<T, K, V> core::marker::Send for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  1585. impl<T, K, V> core::marker::Sync for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  1586. impl<T, K, V> core::marker::Unpin for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  1587. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1588. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::lpm_trie::LpmTrie<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1589. impl<T, U> core::convert::Into<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::From<T>
  1590. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::into(self) -> U
  1591. impl<T, U> core::convert::TryFrom<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::Into<T>
  1592. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = core::convert::Infallible
  1593. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1594. impl<T, U> core::convert::TryInto<U> for aya::maps::lpm_trie::LpmTrie<T, K, V> where U: core::convert::TryFrom<T>
  1595. pub type aya::maps::lpm_trie::LpmTrie<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1596. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1597. impl<T> core::any::Any for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: 'static + core::marker::Sized
  1598. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::type_id(&self) -> core::any::TypeId
  1599. impl<T> core::borrow::Borrow<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sized
  1600. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow(&self) -> &T
  1601. impl<T> core::borrow::BorrowMut<T> for aya::maps::lpm_trie::LpmTrie<T, K, V> where T: core::marker::Sized
  1602. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::borrow_mut(&mut self) -> &mut T
  1603. impl<T> core::convert::From<T> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  1604. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::from(t: T) -> T
  1605. pub struct aya::maps::MapData
  1606. impl aya::maps::MapData
  1607. pub fn aya::maps::MapData::create(obj: aya_obj::maps::Map, name: &str, btf_fd: core::option::Option<std::os::fd::owned::BorrowedFd<'_>>) -> core::result::Result<Self, aya::maps::MapError>
  1608. pub fn aya::maps::MapData::fd(&self) -> &aya::maps::MapFd
  1609. pub fn aya::maps::MapData::from_fd(fd: std::os::fd::owned::OwnedFd) -> core::result::Result<Self, aya::maps::MapError>
  1610. pub fn aya::maps::MapData::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::maps::MapError>
  1611. pub fn aya::maps::MapData::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1612. impl core::fmt::Debug for aya::maps::MapData
  1613. pub fn aya::maps::MapData::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1614. impl core::marker::Send for aya::maps::MapData
  1615. impl core::marker::Sync for aya::maps::MapData
  1616. impl core::marker::Unpin for aya::maps::MapData
  1617. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapData
  1618. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapData
  1619. impl<T, U> core::convert::Into<U> for aya::maps::MapData where U: core::convert::From<T>
  1620. pub fn aya::maps::MapData::into(self) -> U
  1621. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapData where U: core::convert::Into<T>
  1622. pub type aya::maps::MapData::Error = core::convert::Infallible
  1623. pub fn aya::maps::MapData::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1624. impl<T, U> core::convert::TryInto<U> for aya::maps::MapData where U: core::convert::TryFrom<T>
  1625. pub type aya::maps::MapData::Error = <U as core::convert::TryFrom<T>>::Error
  1626. pub fn aya::maps::MapData::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1627. impl<T> core::any::Any for aya::maps::MapData where T: 'static + core::marker::Sized
  1628. pub fn aya::maps::MapData::type_id(&self) -> core::any::TypeId
  1629. impl<T> core::borrow::Borrow<T> for aya::maps::MapData where T: core::marker::Sized
  1630. pub fn aya::maps::MapData::borrow(&self) -> &T
  1631. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapData where T: core::marker::Sized
  1632. pub fn aya::maps::MapData::borrow_mut(&mut self) -> &mut T
  1633. impl<T> core::convert::From<T> for aya::maps::MapData
  1634. pub fn aya::maps::MapData::from(t: T) -> T
  1635. pub struct aya::maps::MapFd(_)
  1636. impl std::os::fd::owned::AsFd for aya::maps::MapFd
  1637. pub fn aya::maps::MapFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  1638. impl core::fmt::Debug for aya::maps::MapFd
  1639. pub fn aya::maps::MapFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1640. impl core::marker::Send for aya::maps::MapFd
  1641. impl core::marker::Sync for aya::maps::MapFd
  1642. impl core::marker::Unpin for aya::maps::MapFd
  1643. impl core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapFd
  1644. impl core::panic::unwind_safe::UnwindSafe for aya::maps::MapFd
  1645. impl<T, U> core::convert::Into<U> for aya::maps::MapFd where U: core::convert::From<T>
  1646. pub fn aya::maps::MapFd::into(self) -> U
  1647. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapFd where U: core::convert::Into<T>
  1648. pub type aya::maps::MapFd::Error = core::convert::Infallible
  1649. pub fn aya::maps::MapFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1650. impl<T, U> core::convert::TryInto<U> for aya::maps::MapFd where U: core::convert::TryFrom<T>
  1651. pub type aya::maps::MapFd::Error = <U as core::convert::TryFrom<T>>::Error
  1652. pub fn aya::maps::MapFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1653. impl<T> core::any::Any for aya::maps::MapFd where T: 'static + core::marker::Sized
  1654. pub fn aya::maps::MapFd::type_id(&self) -> core::any::TypeId
  1655. impl<T> core::borrow::Borrow<T> for aya::maps::MapFd where T: core::marker::Sized
  1656. pub fn aya::maps::MapFd::borrow(&self) -> &T
  1657. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapFd where T: core::marker::Sized
  1658. pub fn aya::maps::MapFd::borrow_mut(&mut self) -> &mut T
  1659. impl<T> core::convert::From<T> for aya::maps::MapFd
  1660. pub fn aya::maps::MapFd::from(t: T) -> T
  1661. pub struct aya::maps::MapIter<'coll, K: aya::Pod, V, I: aya::maps::IterableMap<K, V>>
  1662. impl<K: aya::Pod, V, I: aya::maps::IterableMap<K, V>> core::iter::traits::iterator::Iterator for aya::maps::MapIter<'_, K, V, I>
  1663. pub type aya::maps::MapIter<'_, K, V, I>::Item = core::result::Result<(K, V), aya::maps::MapError>
  1664. pub fn aya::maps::MapIter<'_, K, V, I>::next(&mut self) -> core::option::Option<Self::Item>
  1665. impl<'coll, K, V, I> core::marker::Send for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, K: core::marker::Send, V: core::marker::Send
  1666. impl<'coll, K, V, I> core::marker::Sync for aya::maps::MapIter<'coll, K, V, I> where I: core::marker::Sync, K: core::marker::Sync, V: core::marker::Sync
  1667. impl<'coll, K, V, I> core::marker::Unpin for aya::maps::MapIter<'coll, K, V, I> where K: core::marker::Unpin, V: core::marker::Unpin
  1668. impl<'coll, K, V, I> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1669. impl<'coll, K, V, I> core::panic::unwind_safe::UnwindSafe for aya::maps::MapIter<'coll, K, V, I> where I: core::panic::unwind_safe::RefUnwindSafe, K: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1670. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapIter<'coll, K, V, I> where I: core::iter::traits::iterator::Iterator
  1671. pub type aya::maps::MapIter<'coll, K, V, I>::IntoIter = I
  1672. pub type aya::maps::MapIter<'coll, K, V, I>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1673. pub fn aya::maps::MapIter<'coll, K, V, I>::into_iter(self) -> I
  1674. impl<T, U> core::convert::Into<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::From<T>
  1675. pub fn aya::maps::MapIter<'coll, K, V, I>::into(self) -> U
  1676. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::Into<T>
  1677. pub type aya::maps::MapIter<'coll, K, V, I>::Error = core::convert::Infallible
  1678. pub fn aya::maps::MapIter<'coll, K, V, I>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1679. impl<T, U> core::convert::TryInto<U> for aya::maps::MapIter<'coll, K, V, I> where U: core::convert::TryFrom<T>
  1680. pub type aya::maps::MapIter<'coll, K, V, I>::Error = <U as core::convert::TryFrom<T>>::Error
  1681. pub fn aya::maps::MapIter<'coll, K, V, I>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1682. impl<T> core::any::Any for aya::maps::MapIter<'coll, K, V, I> where T: 'static + core::marker::Sized
  1683. pub fn aya::maps::MapIter<'coll, K, V, I>::type_id(&self) -> core::any::TypeId
  1684. impl<T> core::borrow::Borrow<T> for aya::maps::MapIter<'coll, K, V, I> where T: core::marker::Sized
  1685. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow(&self) -> &T
  1686. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapIter<'coll, K, V, I> where T: core::marker::Sized
  1687. pub fn aya::maps::MapIter<'coll, K, V, I>::borrow_mut(&mut self) -> &mut T
  1688. impl<T> core::convert::From<T> for aya::maps::MapIter<'coll, K, V, I>
  1689. pub fn aya::maps::MapIter<'coll, K, V, I>::from(t: T) -> T
  1690. pub struct aya::maps::MapKeys<'coll, K: aya::Pod>
  1691. impl<K: aya::Pod> core::iter::traits::iterator::Iterator for aya::maps::MapKeys<'_, K>
  1692. pub type aya::maps::MapKeys<'_, K>::Item = core::result::Result<K, aya::maps::MapError>
  1693. pub fn aya::maps::MapKeys<'_, K>::next(&mut self) -> core::option::Option<core::result::Result<K, aya::maps::MapError>>
  1694. impl<'coll, K> core::marker::Send for aya::maps::MapKeys<'coll, K> where K: core::marker::Send
  1695. impl<'coll, K> core::marker::Sync for aya::maps::MapKeys<'coll, K> where K: core::marker::Sync
  1696. impl<'coll, K> core::marker::Unpin for aya::maps::MapKeys<'coll, K> where K: core::marker::Unpin
  1697. impl<'coll, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::RefUnwindSafe
  1698. impl<'coll, K> core::panic::unwind_safe::UnwindSafe for aya::maps::MapKeys<'coll, K> where K: core::panic::unwind_safe::UnwindSafe
  1699. impl<I> core::iter::traits::collect::IntoIterator for aya::maps::MapKeys<'coll, K> where I: core::iter::traits::iterator::Iterator
  1700. pub type aya::maps::MapKeys<'coll, K>::IntoIter = I
  1701. pub type aya::maps::MapKeys<'coll, K>::Item = <I as core::iter::traits::iterator::Iterator>::Item
  1702. pub fn aya::maps::MapKeys<'coll, K>::into_iter(self) -> I
  1703. impl<T, U> core::convert::Into<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::From<T>
  1704. pub fn aya::maps::MapKeys<'coll, K>::into(self) -> U
  1705. impl<T, U> core::convert::TryFrom<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::Into<T>
  1706. pub type aya::maps::MapKeys<'coll, K>::Error = core::convert::Infallible
  1707. pub fn aya::maps::MapKeys<'coll, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1708. impl<T, U> core::convert::TryInto<U> for aya::maps::MapKeys<'coll, K> where U: core::convert::TryFrom<T>
  1709. pub type aya::maps::MapKeys<'coll, K>::Error = <U as core::convert::TryFrom<T>>::Error
  1710. pub fn aya::maps::MapKeys<'coll, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1711. impl<T> core::any::Any for aya::maps::MapKeys<'coll, K> where T: 'static + core::marker::Sized
  1712. pub fn aya::maps::MapKeys<'coll, K>::type_id(&self) -> core::any::TypeId
  1713. impl<T> core::borrow::Borrow<T> for aya::maps::MapKeys<'coll, K> where T: core::marker::Sized
  1714. pub fn aya::maps::MapKeys<'coll, K>::borrow(&self) -> &T
  1715. impl<T> core::borrow::BorrowMut<T> for aya::maps::MapKeys<'coll, K> where T: core::marker::Sized
  1716. pub fn aya::maps::MapKeys<'coll, K>::borrow_mut(&mut self) -> &mut T
  1717. impl<T> core::convert::From<T> for aya::maps::MapKeys<'coll, K>
  1718. pub fn aya::maps::MapKeys<'coll, K>::from(t: T) -> T
  1719. pub struct aya::maps::PerCpuArray<T, V: aya::Pod>
  1720. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1721. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1722. pub fn aya::maps::PerCpuArray<T, V>::iter(&self) -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>> + '_
  1723. pub fn aya::maps::PerCpuArray<T, V>::len(&self) -> u32
  1724. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1725. pub fn aya::maps::PerCpuArray<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1726. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::PerCpuArray<T, V>
  1727. pub fn aya::maps::PerCpuArray<T, V>::set(&mut self, index: u32, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1728. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::PerCpuArray<&'a aya::maps::MapData, V>
  1729. pub type aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1730. pub fn aya::maps::PerCpuArray<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1731. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>
  1732. pub type aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1733. pub fn aya::maps::PerCpuArray<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1734. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  1735. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1736. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1737. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::PerCpuArray<aya::maps::MapData, V>
  1738. pub type aya::maps::PerCpuArray<aya::maps::MapData, V>::Error = aya::maps::MapError
  1739. pub fn aya::maps::PerCpuArray<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1740. impl<T, V> core::marker::Send for aya::maps::PerCpuArray<T, V> where T: core::marker::Send, V: core::marker::Send
  1741. impl<T, V> core::marker::Sync for aya::maps::PerCpuArray<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1742. impl<T, V> core::marker::Unpin for aya::maps::PerCpuArray<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1743. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1744. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuArray<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1745. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::From<T>
  1746. pub fn aya::maps::PerCpuArray<T, V>::into(self) -> U
  1747. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::Into<T>
  1748. pub type aya::maps::PerCpuArray<T, V>::Error = core::convert::Infallible
  1749. pub fn aya::maps::PerCpuArray<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1750. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuArray<T, V> where U: core::convert::TryFrom<T>
  1751. pub type aya::maps::PerCpuArray<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1752. pub fn aya::maps::PerCpuArray<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1753. impl<T> core::any::Any for aya::maps::PerCpuArray<T, V> where T: 'static + core::marker::Sized
  1754. pub fn aya::maps::PerCpuArray<T, V>::type_id(&self) -> core::any::TypeId
  1755. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuArray<T, V> where T: core::marker::Sized
  1756. pub fn aya::maps::PerCpuArray<T, V>::borrow(&self) -> &T
  1757. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuArray<T, V> where T: core::marker::Sized
  1758. pub fn aya::maps::PerCpuArray<T, V>::borrow_mut(&mut self) -> &mut T
  1759. impl<T> core::convert::From<T> for aya::maps::PerCpuArray<T, V>
  1760. pub fn aya::maps::PerCpuArray<T, V>::from(t: T) -> T
  1761. pub struct aya::maps::PerCpuHashMap<T, K: aya::Pod, V: aya::Pod>
  1762. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1763. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K, flags: u64) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1764. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::iter(&self) -> aya::maps::MapIter<'_, K, aya::maps::PerCpuValues<V>, Self>
  1765. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1766. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1767. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::insert(&mut self, key: impl core::borrow::Borrow<K>, values: aya::maps::PerCpuValues<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1768. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1769. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1770. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1771. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>
  1772. pub type aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1773. pub fn aya::maps::hash_map::PerCpuHashMap<&'a aya::maps::MapData, K, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1774. impl<'a, K: aya::Pod, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>
  1775. pub type aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1776. pub fn aya::maps::hash_map::PerCpuHashMap<&'a mut aya::maps::MapData, K, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1777. impl<K: aya::Pod, V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>
  1778. pub type aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::Error = aya::maps::MapError
  1779. pub fn aya::maps::hash_map::PerCpuHashMap<aya::maps::MapData, K, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1780. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1781. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1782. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1783. impl<T, K, V> core::marker::Send for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Send, T: core::marker::Send, V: core::marker::Send
  1784. impl<T, K, V> core::marker::Sync for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Sync, T: core::marker::Sync, V: core::marker::Sync
  1785. impl<T, K, V> core::marker::Unpin for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::marker::Unpin, T: core::marker::Unpin, V: core::marker::Unpin
  1786. impl<T, K, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1787. impl<T, K, V> core::panic::unwind_safe::UnwindSafe for aya::maps::hash_map::PerCpuHashMap<T, K, V> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1788. impl<T, U> core::convert::Into<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::From<T>
  1789. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::into(self) -> U
  1790. impl<T, U> core::convert::TryFrom<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::Into<T>
  1791. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = core::convert::Infallible
  1792. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1793. impl<T, U> core::convert::TryInto<U> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where U: core::convert::TryFrom<T>
  1794. pub type aya::maps::hash_map::PerCpuHashMap<T, K, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1795. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1796. impl<T> core::any::Any for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: 'static + core::marker::Sized
  1797. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::type_id(&self) -> core::any::TypeId
  1798. impl<T> core::borrow::Borrow<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sized
  1799. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow(&self) -> &T
  1800. impl<T> core::borrow::BorrowMut<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V> where T: core::marker::Sized
  1801. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::borrow_mut(&mut self) -> &mut T
  1802. impl<T> core::convert::From<T> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1803. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::from(t: T) -> T
  1804. pub struct aya::maps::PerCpuValues<T: aya::Pod>
  1805. impl<T: aya::Pod> core::convert::TryFrom<alloc::vec::Vec<T, alloc::alloc::Global>> for aya::maps::PerCpuValues<T>
  1806. pub type aya::maps::PerCpuValues<T>::Error = std::io::error::Error
  1807. pub fn aya::maps::PerCpuValues<T>::try_from(values: alloc::vec::Vec<T>) -> core::result::Result<Self, Self::Error>
  1808. impl<T: aya::Pod> core::ops::deref::Deref for aya::maps::PerCpuValues<T>
  1809. pub type aya::maps::PerCpuValues<T>::Target = alloc::boxed::Box<[T], alloc::alloc::Global>
  1810. pub fn aya::maps::PerCpuValues<T>::deref(&self) -> &Self::Target
  1811. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  1812. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1813. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  1814. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  1815. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  1816. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  1817. impl<T: core::fmt::Debug + aya::Pod> core::fmt::Debug for aya::maps::PerCpuValues<T>
  1818. pub fn aya::maps::PerCpuValues<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  1819. impl<T> core::marker::Send for aya::maps::PerCpuValues<T> where T: core::marker::Send
  1820. impl<T> core::marker::Sync for aya::maps::PerCpuValues<T> where T: core::marker::Sync
  1821. impl<T> core::marker::Unpin for aya::maps::PerCpuValues<T>
  1822. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1823. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::PerCpuValues<T> where T: core::panic::unwind_safe::UnwindSafe
  1824. impl<T, U> core::convert::Into<U> for aya::maps::PerCpuValues<T> where U: core::convert::From<T>
  1825. pub fn aya::maps::PerCpuValues<T>::into(self) -> U
  1826. impl<T, U> core::convert::TryFrom<U> for aya::maps::PerCpuValues<T> where U: core::convert::Into<T>
  1827. pub type aya::maps::PerCpuValues<T>::Error = core::convert::Infallible
  1828. pub fn aya::maps::PerCpuValues<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1829. impl<T, U> core::convert::TryInto<U> for aya::maps::PerCpuValues<T> where U: core::convert::TryFrom<T>
  1830. pub type aya::maps::PerCpuValues<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1831. pub fn aya::maps::PerCpuValues<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1832. impl<T> core::any::Any for aya::maps::PerCpuValues<T> where T: 'static + core::marker::Sized
  1833. pub fn aya::maps::PerCpuValues<T>::type_id(&self) -> core::any::TypeId
  1834. impl<T> core::borrow::Borrow<T> for aya::maps::PerCpuValues<T> where T: core::marker::Sized
  1835. pub fn aya::maps::PerCpuValues<T>::borrow(&self) -> &T
  1836. impl<T> core::borrow::BorrowMut<T> for aya::maps::PerCpuValues<T> where T: core::marker::Sized
  1837. pub fn aya::maps::PerCpuValues<T>::borrow_mut(&mut self) -> &mut T
  1838. impl<T> core::convert::From<T> for aya::maps::PerCpuValues<T>
  1839. pub fn aya::maps::PerCpuValues<T>::from(t: T) -> T
  1840. pub struct aya::maps::PerfEventArray<T>
  1841. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::perf::PerfEventArray<T>
  1842. pub fn aya::maps::perf::PerfEventArray<T>::open(&mut self, index: u32, page_count: core::option::Option<usize>) -> core::result::Result<aya::maps::perf::PerfEventArrayBuffer<T>, aya::maps::perf::PerfBufferError>
  1843. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::perf::PerfEventArray<aya::maps::MapData>
  1844. pub type aya::maps::perf::PerfEventArray<aya::maps::MapData>::Error = aya::maps::MapError
  1845. pub fn aya::maps::perf::PerfEventArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1846. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>
  1847. pub type aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1848. pub fn aya::maps::perf::PerfEventArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1849. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>
  1850. pub type aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1851. pub fn aya::maps::perf::PerfEventArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1852. impl<T> core::marker::Send for aya::maps::perf::PerfEventArray<T> where T: core::marker::Send + core::marker::Sync
  1853. impl<T> core::marker::Sync for aya::maps::perf::PerfEventArray<T> where T: core::marker::Send + core::marker::Sync
  1854. impl<T> core::marker::Unpin for aya::maps::perf::PerfEventArray<T>
  1855. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1856. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::perf::PerfEventArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1857. impl<T, U> core::convert::Into<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::From<T>
  1858. pub fn aya::maps::perf::PerfEventArray<T>::into(self) -> U
  1859. impl<T, U> core::convert::TryFrom<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::Into<T>
  1860. pub type aya::maps::perf::PerfEventArray<T>::Error = core::convert::Infallible
  1861. pub fn aya::maps::perf::PerfEventArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1862. impl<T, U> core::convert::TryInto<U> for aya::maps::perf::PerfEventArray<T> where U: core::convert::TryFrom<T>
  1863. pub type aya::maps::perf::PerfEventArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1864. pub fn aya::maps::perf::PerfEventArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1865. impl<T> core::any::Any for aya::maps::perf::PerfEventArray<T> where T: 'static + core::marker::Sized
  1866. pub fn aya::maps::perf::PerfEventArray<T>::type_id(&self) -> core::any::TypeId
  1867. impl<T> core::borrow::Borrow<T> for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sized
  1868. pub fn aya::maps::perf::PerfEventArray<T>::borrow(&self) -> &T
  1869. impl<T> core::borrow::BorrowMut<T> for aya::maps::perf::PerfEventArray<T> where T: core::marker::Sized
  1870. pub fn aya::maps::perf::PerfEventArray<T>::borrow_mut(&mut self) -> &mut T
  1871. impl<T> core::convert::From<T> for aya::maps::perf::PerfEventArray<T>
  1872. pub fn aya::maps::perf::PerfEventArray<T>::from(t: T) -> T
  1873. pub struct aya::maps::ProgramArray<T>
  1874. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::ProgramArray<T>
  1875. pub fn aya::maps::ProgramArray<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  1876. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  1877. pub fn aya::maps::ProgramArray<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  1878. pub fn aya::maps::ProgramArray<T>::set(&mut self, index: u32, program: &aya::programs::ProgramFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1879. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::ProgramArray<T>
  1880. pub fn aya::maps::ProgramArray<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1881. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::ProgramArray<aya::maps::MapData>
  1882. pub type aya::maps::ProgramArray<aya::maps::MapData>::Error = aya::maps::MapError
  1883. pub fn aya::maps::ProgramArray<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1884. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::ProgramArray<&'a aya::maps::MapData>
  1885. pub type aya::maps::ProgramArray<&'a aya::maps::MapData>::Error = aya::maps::MapError
  1886. pub fn aya::maps::ProgramArray<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1887. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::ProgramArray<&'a mut aya::maps::MapData>
  1888. pub type aya::maps::ProgramArray<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  1889. pub fn aya::maps::ProgramArray<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1890. impl<T> core::marker::Send for aya::maps::ProgramArray<T> where T: core::marker::Send
  1891. impl<T> core::marker::Sync for aya::maps::ProgramArray<T> where T: core::marker::Sync
  1892. impl<T> core::marker::Unpin for aya::maps::ProgramArray<T> where T: core::marker::Unpin
  1893. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::RefUnwindSafe
  1894. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::ProgramArray<T> where T: core::panic::unwind_safe::UnwindSafe
  1895. impl<T, U> core::convert::Into<U> for aya::maps::ProgramArray<T> where U: core::convert::From<T>
  1896. pub fn aya::maps::ProgramArray<T>::into(self) -> U
  1897. impl<T, U> core::convert::TryFrom<U> for aya::maps::ProgramArray<T> where U: core::convert::Into<T>
  1898. pub type aya::maps::ProgramArray<T>::Error = core::convert::Infallible
  1899. pub fn aya::maps::ProgramArray<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1900. impl<T, U> core::convert::TryInto<U> for aya::maps::ProgramArray<T> where U: core::convert::TryFrom<T>
  1901. pub type aya::maps::ProgramArray<T>::Error = <U as core::convert::TryFrom<T>>::Error
  1902. pub fn aya::maps::ProgramArray<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1903. impl<T> core::any::Any for aya::maps::ProgramArray<T> where T: 'static + core::marker::Sized
  1904. pub fn aya::maps::ProgramArray<T>::type_id(&self) -> core::any::TypeId
  1905. impl<T> core::borrow::Borrow<T> for aya::maps::ProgramArray<T> where T: core::marker::Sized
  1906. pub fn aya::maps::ProgramArray<T>::borrow(&self) -> &T
  1907. impl<T> core::borrow::BorrowMut<T> for aya::maps::ProgramArray<T> where T: core::marker::Sized
  1908. pub fn aya::maps::ProgramArray<T>::borrow_mut(&mut self) -> &mut T
  1909. impl<T> core::convert::From<T> for aya::maps::ProgramArray<T>
  1910. pub fn aya::maps::ProgramArray<T>::from(t: T) -> T
  1911. pub struct aya::maps::Queue<T, V: aya::Pod>
  1912. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  1913. pub fn aya::maps::queue::Queue<T, V>::capacity(&self) -> u32
  1914. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  1915. pub fn aya::maps::queue::Queue<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1916. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::queue::Queue<T, V>
  1917. pub fn aya::maps::queue::Queue<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  1918. pub fn aya::maps::queue::Queue<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1919. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::queue::Queue<&'a aya::maps::MapData, V>
  1920. pub type aya::maps::queue::Queue<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1921. pub fn aya::maps::queue::Queue<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1922. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>
  1923. pub type aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1924. pub fn aya::maps::queue::Queue<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1925. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::queue::Queue<aya::maps::MapData, V>
  1926. pub type aya::maps::queue::Queue<aya::maps::MapData, V>::Error = aya::maps::MapError
  1927. pub fn aya::maps::queue::Queue<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1928. impl<T, V> core::marker::Send for aya::maps::queue::Queue<T, V> where T: core::marker::Send, V: core::marker::Send
  1929. impl<T, V> core::marker::Sync for aya::maps::queue::Queue<T, V> where T: core::marker::Sync, V: core::marker::Sync
  1930. impl<T, V> core::marker::Unpin for aya::maps::queue::Queue<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  1931. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  1932. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::queue::Queue<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  1933. impl<T, U> core::convert::Into<U> for aya::maps::queue::Queue<T, V> where U: core::convert::From<T>
  1934. pub fn aya::maps::queue::Queue<T, V>::into(self) -> U
  1935. impl<T, U> core::convert::TryFrom<U> for aya::maps::queue::Queue<T, V> where U: core::convert::Into<T>
  1936. pub type aya::maps::queue::Queue<T, V>::Error = core::convert::Infallible
  1937. pub fn aya::maps::queue::Queue<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1938. impl<T, U> core::convert::TryInto<U> for aya::maps::queue::Queue<T, V> where U: core::convert::TryFrom<T>
  1939. pub type aya::maps::queue::Queue<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  1940. pub fn aya::maps::queue::Queue<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1941. impl<T> core::any::Any for aya::maps::queue::Queue<T, V> where T: 'static + core::marker::Sized
  1942. pub fn aya::maps::queue::Queue<T, V>::type_id(&self) -> core::any::TypeId
  1943. impl<T> core::borrow::Borrow<T> for aya::maps::queue::Queue<T, V> where T: core::marker::Sized
  1944. pub fn aya::maps::queue::Queue<T, V>::borrow(&self) -> &T
  1945. impl<T> core::borrow::BorrowMut<T> for aya::maps::queue::Queue<T, V> where T: core::marker::Sized
  1946. pub fn aya::maps::queue::Queue<T, V>::borrow_mut(&mut self) -> &mut T
  1947. impl<T> core::convert::From<T> for aya::maps::queue::Queue<T, V>
  1948. pub fn aya::maps::queue::Queue<T, V>::from(t: T) -> T
  1949. pub struct aya::maps::SockHash<T, K>
  1950. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  1951. pub fn aya::maps::SockHash<T, K>::fd(&self) -> &aya::maps::sock::SockMapFd
  1952. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K, flags: u64) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  1953. pub fn aya::maps::SockHash<T, K>::iter(&self) -> aya::maps::MapIter<'_, K, std::os::fd::raw::RawFd, Self>
  1954. pub fn aya::maps::SockHash<T, K>::keys(&self) -> aya::maps::MapKeys<'_, K>
  1955. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, K: aya::Pod> aya::maps::SockHash<T, K>
  1956. pub fn aya::maps::SockHash<T, K>::insert<I: std::os::fd::raw::AsRawFd>(&mut self, key: impl core::borrow::Borrow<K>, value: I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  1957. pub fn aya::maps::SockHash<T, K>::remove(&mut self, key: &K) -> core::result::Result<(), aya::maps::MapError>
  1958. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::SockHash<T, V>
  1959. pub fn aya::maps::SockHash<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  1960. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockHash<&'a aya::maps::MapData, V>
  1961. pub type aya::maps::SockHash<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  1962. pub fn aya::maps::SockHash<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1963. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockHash<&'a mut aya::maps::MapData, V>
  1964. pub type aya::maps::SockHash<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  1965. pub fn aya::maps::SockHash<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1966. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  1967. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  1968. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  1969. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::SockHash<aya::maps::MapData, V>
  1970. pub type aya::maps::SockHash<aya::maps::MapData, V>::Error = aya::maps::MapError
  1971. pub fn aya::maps::SockHash<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  1972. impl<T, K> core::marker::Send for aya::maps::SockHash<T, K> where K: core::marker::Send, T: core::marker::Send
  1973. impl<T, K> core::marker::Sync for aya::maps::SockHash<T, K> where K: core::marker::Sync, T: core::marker::Sync
  1974. impl<T, K> core::marker::Unpin for aya::maps::SockHash<T, K> where K: core::marker::Unpin, T: core::marker::Unpin
  1975. impl<T, K> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockHash<T, K> where K: core::panic::unwind_safe::RefUnwindSafe, T: core::panic::unwind_safe::RefUnwindSafe
  1976. impl<T, K> core::panic::unwind_safe::UnwindSafe for aya::maps::SockHash<T, K> where K: core::panic::unwind_safe::UnwindSafe, T: core::panic::unwind_safe::UnwindSafe
  1977. impl<T, U> core::convert::Into<U> for aya::maps::SockHash<T, K> where U: core::convert::From<T>
  1978. pub fn aya::maps::SockHash<T, K>::into(self) -> U
  1979. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockHash<T, K> where U: core::convert::Into<T>
  1980. pub type aya::maps::SockHash<T, K>::Error = core::convert::Infallible
  1981. pub fn aya::maps::SockHash<T, K>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  1982. impl<T, U> core::convert::TryInto<U> for aya::maps::SockHash<T, K> where U: core::convert::TryFrom<T>
  1983. pub type aya::maps::SockHash<T, K>::Error = <U as core::convert::TryFrom<T>>::Error
  1984. pub fn aya::maps::SockHash<T, K>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  1985. impl<T> core::any::Any for aya::maps::SockHash<T, K> where T: 'static + core::marker::Sized
  1986. pub fn aya::maps::SockHash<T, K>::type_id(&self) -> core::any::TypeId
  1987. impl<T> core::borrow::Borrow<T> for aya::maps::SockHash<T, K> where T: core::marker::Sized
  1988. pub fn aya::maps::SockHash<T, K>::borrow(&self) -> &T
  1989. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockHash<T, K> where T: core::marker::Sized
  1990. pub fn aya::maps::SockHash<T, K>::borrow_mut(&mut self) -> &mut T
  1991. impl<T> core::convert::From<T> for aya::maps::SockHash<T, K>
  1992. pub fn aya::maps::SockHash<T, K>::from(t: T) -> T
  1993. pub struct aya::maps::SockMap<T>
  1994. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::SockMap<T>
  1995. pub fn aya::maps::SockMap<T>::fd(&self) -> &aya::maps::sock::SockMapFd
  1996. pub fn aya::maps::SockMap<T>::indices(&self) -> aya::maps::MapKeys<'_, u32>
  1997. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  1998. pub fn aya::maps::SockMap<T>::clear_index(&mut self, index: &u32) -> core::result::Result<(), aya::maps::MapError>
  1999. pub fn aya::maps::SockMap<T>::set<I: std::os::fd::raw::AsRawFd>(&mut self, index: u32, socket: &I, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2000. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::SockMap<T>
  2001. pub fn aya::maps::SockMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2002. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::SockMap<aya::maps::MapData>
  2003. pub type aya::maps::SockMap<aya::maps::MapData>::Error = aya::maps::MapError
  2004. pub fn aya::maps::SockMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2005. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::SockMap<&'a aya::maps::MapData>
  2006. pub type aya::maps::SockMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2007. pub fn aya::maps::SockMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2008. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::SockMap<&'a mut aya::maps::MapData>
  2009. pub type aya::maps::SockMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2010. pub fn aya::maps::SockMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2011. impl<T> core::marker::Send for aya::maps::SockMap<T> where T: core::marker::Send
  2012. impl<T> core::marker::Sync for aya::maps::SockMap<T> where T: core::marker::Sync
  2013. impl<T> core::marker::Unpin for aya::maps::SockMap<T> where T: core::marker::Unpin
  2014. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2015. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::SockMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2016. impl<T, U> core::convert::Into<U> for aya::maps::SockMap<T> where U: core::convert::From<T>
  2017. pub fn aya::maps::SockMap<T>::into(self) -> U
  2018. impl<T, U> core::convert::TryFrom<U> for aya::maps::SockMap<T> where U: core::convert::Into<T>
  2019. pub type aya::maps::SockMap<T>::Error = core::convert::Infallible
  2020. pub fn aya::maps::SockMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2021. impl<T, U> core::convert::TryInto<U> for aya::maps::SockMap<T> where U: core::convert::TryFrom<T>
  2022. pub type aya::maps::SockMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2023. pub fn aya::maps::SockMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2024. impl<T> core::any::Any for aya::maps::SockMap<T> where T: 'static + core::marker::Sized
  2025. pub fn aya::maps::SockMap<T>::type_id(&self) -> core::any::TypeId
  2026. impl<T> core::borrow::Borrow<T> for aya::maps::SockMap<T> where T: core::marker::Sized
  2027. pub fn aya::maps::SockMap<T>::borrow(&self) -> &T
  2028. impl<T> core::borrow::BorrowMut<T> for aya::maps::SockMap<T> where T: core::marker::Sized
  2029. pub fn aya::maps::SockMap<T>::borrow_mut(&mut self) -> &mut T
  2030. impl<T> core::convert::From<T> for aya::maps::SockMap<T>
  2031. pub fn aya::maps::SockMap<T>::from(t: T) -> T
  2032. pub struct aya::maps::Stack<T, V: aya::Pod>
  2033. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2034. pub fn aya::maps::stack::Stack<T, V>::capacity(&self) -> u32
  2035. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2036. pub fn aya::maps::stack::Stack<T, V>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2037. impl<T: core::borrow::BorrowMut<aya::maps::MapData>, V: aya::Pod> aya::maps::stack::Stack<T, V>
  2038. pub fn aya::maps::stack::Stack<T, V>::pop(&mut self, flags: u64) -> core::result::Result<V, aya::maps::MapError>
  2039. pub fn aya::maps::stack::Stack<T, V>::push(&mut self, value: impl core::borrow::Borrow<V>, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2040. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack::Stack<&'a aya::maps::MapData, V>
  2041. pub type aya::maps::stack::Stack<&'a aya::maps::MapData, V>::Error = aya::maps::MapError
  2042. pub fn aya::maps::stack::Stack<&'a aya::maps::MapData, V>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2043. impl<'a, V: aya::Pod> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>
  2044. pub type aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::Error = aya::maps::MapError
  2045. pub fn aya::maps::stack::Stack<&'a mut aya::maps::MapData, V>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2046. impl<V: aya::Pod> core::convert::TryFrom<aya::maps::Map> for aya::maps::stack::Stack<aya::maps::MapData, V>
  2047. pub type aya::maps::stack::Stack<aya::maps::MapData, V>::Error = aya::maps::MapError
  2048. pub fn aya::maps::stack::Stack<aya::maps::MapData, V>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2049. impl<T, V> core::marker::Send for aya::maps::stack::Stack<T, V> where T: core::marker::Send, V: core::marker::Send
  2050. impl<T, V> core::marker::Sync for aya::maps::stack::Stack<T, V> where T: core::marker::Sync, V: core::marker::Sync
  2051. impl<T, V> core::marker::Unpin for aya::maps::stack::Stack<T, V> where T: core::marker::Unpin, V: core::marker::Unpin
  2052. impl<T, V> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::RefUnwindSafe, V: core::panic::unwind_safe::RefUnwindSafe
  2053. impl<T, V> core::panic::unwind_safe::UnwindSafe for aya::maps::stack::Stack<T, V> where T: core::panic::unwind_safe::UnwindSafe, V: core::panic::unwind_safe::UnwindSafe
  2054. impl<T, U> core::convert::Into<U> for aya::maps::stack::Stack<T, V> where U: core::convert::From<T>
  2055. pub fn aya::maps::stack::Stack<T, V>::into(self) -> U
  2056. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack::Stack<T, V> where U: core::convert::Into<T>
  2057. pub type aya::maps::stack::Stack<T, V>::Error = core::convert::Infallible
  2058. pub fn aya::maps::stack::Stack<T, V>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2059. impl<T, U> core::convert::TryInto<U> for aya::maps::stack::Stack<T, V> where U: core::convert::TryFrom<T>
  2060. pub type aya::maps::stack::Stack<T, V>::Error = <U as core::convert::TryFrom<T>>::Error
  2061. pub fn aya::maps::stack::Stack<T, V>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2062. impl<T> core::any::Any for aya::maps::stack::Stack<T, V> where T: 'static + core::marker::Sized
  2063. pub fn aya::maps::stack::Stack<T, V>::type_id(&self) -> core::any::TypeId
  2064. impl<T> core::borrow::Borrow<T> for aya::maps::stack::Stack<T, V> where T: core::marker::Sized
  2065. pub fn aya::maps::stack::Stack<T, V>::borrow(&self) -> &T
  2066. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack::Stack<T, V> where T: core::marker::Sized
  2067. pub fn aya::maps::stack::Stack<T, V>::borrow_mut(&mut self) -> &mut T
  2068. impl<T> core::convert::From<T> for aya::maps::stack::Stack<T, V>
  2069. pub fn aya::maps::stack::Stack<T, V>::from(t: T) -> T
  2070. pub struct aya::maps::StackTraceMap<T>
  2071. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2072. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, stack_id: &u32, flags: u64) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2073. pub fn aya::maps::stack_trace::StackTraceMap<T>::iter(&self) -> aya::maps::MapIter<'_, u32, aya::maps::stack_trace::StackTrace, Self>
  2074. pub fn aya::maps::stack_trace::StackTraceMap<T>::stack_ids(&self) -> aya::maps::MapKeys<'_, u32>
  2075. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::stack_trace::StackTraceMap<T>
  2076. pub fn aya::maps::stack_trace::StackTraceMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2077. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>
  2078. pub type aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::Error = aya::maps::MapError
  2079. pub fn aya::maps::stack_trace::StackTraceMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2080. impl<'a, T: core::borrow::Borrow<aya::maps::MapData>> core::iter::traits::collect::IntoIterator for &'a aya::maps::stack_trace::StackTraceMap<T>
  2081. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::IntoIter = aya::maps::MapIter<'a, u32, aya::maps::stack_trace::StackTrace, aya::maps::stack_trace::StackTraceMap<T>>
  2082. pub type &'a aya::maps::stack_trace::StackTraceMap<T>::Item = core::result::Result<(u32, aya::maps::stack_trace::StackTrace), aya::maps::MapError>
  2083. pub fn &'a aya::maps::stack_trace::StackTraceMap<T>::into_iter(self) -> Self::IntoIter
  2084. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>
  2085. pub type aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2086. pub fn aya::maps::stack_trace::StackTraceMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2087. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>
  2088. pub type aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2089. pub fn aya::maps::stack_trace::StackTraceMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2090. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2091. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2092. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2093. impl<T: core::fmt::Debug> core::fmt::Debug for aya::maps::stack_trace::StackTraceMap<T>
  2094. pub fn aya::maps::stack_trace::StackTraceMap<T>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2095. impl<T> core::marker::Send for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Send
  2096. impl<T> core::marker::Sync for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sync
  2097. impl<T> core::marker::Unpin for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Unpin
  2098. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2099. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::stack_trace::StackTraceMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2100. impl<T, U> core::convert::Into<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::From<T>
  2101. pub fn aya::maps::stack_trace::StackTraceMap<T>::into(self) -> U
  2102. impl<T, U> core::convert::TryFrom<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::Into<T>
  2103. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = core::convert::Infallible
  2104. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2105. impl<T, U> core::convert::TryInto<U> for aya::maps::stack_trace::StackTraceMap<T> where U: core::convert::TryFrom<T>
  2106. pub type aya::maps::stack_trace::StackTraceMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2107. pub fn aya::maps::stack_trace::StackTraceMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2108. impl<T> core::any::Any for aya::maps::stack_trace::StackTraceMap<T> where T: 'static + core::marker::Sized
  2109. pub fn aya::maps::stack_trace::StackTraceMap<T>::type_id(&self) -> core::any::TypeId
  2110. impl<T> core::borrow::Borrow<T> for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sized
  2111. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow(&self) -> &T
  2112. impl<T> core::borrow::BorrowMut<T> for aya::maps::stack_trace::StackTraceMap<T> where T: core::marker::Sized
  2113. pub fn aya::maps::stack_trace::StackTraceMap<T>::borrow_mut(&mut self) -> &mut T
  2114. impl<T> core::convert::From<T> for aya::maps::stack_trace::StackTraceMap<T>
  2115. pub fn aya::maps::stack_trace::StackTraceMap<T>::from(t: T) -> T
  2116. pub struct aya::maps::XskMap<T>
  2117. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::XskMap<T>
  2118. pub fn aya::maps::XskMap<T>::len(&self) -> u32
  2119. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  2120. pub fn aya::maps::XskMap<T>::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2121. impl<T: core::borrow::BorrowMut<aya::maps::MapData>> aya::maps::XskMap<T>
  2122. pub fn aya::maps::XskMap<T>::set(&mut self, index: u32, socket_fd: impl std::os::fd::raw::AsRawFd, flags: u64) -> core::result::Result<(), aya::maps::MapError>
  2123. impl core::convert::TryFrom<aya::maps::Map> for aya::maps::XskMap<aya::maps::MapData>
  2124. pub type aya::maps::XskMap<aya::maps::MapData>::Error = aya::maps::MapError
  2125. pub fn aya::maps::XskMap<aya::maps::MapData>::try_from(map: aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2126. impl<'a> core::convert::TryFrom<&'a aya::maps::Map> for aya::maps::XskMap<&'a aya::maps::MapData>
  2127. pub type aya::maps::XskMap<&'a aya::maps::MapData>::Error = aya::maps::MapError
  2128. pub fn aya::maps::XskMap<&'a aya::maps::MapData>::try_from(map: &'a aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2129. impl<'a> core::convert::TryFrom<&'a mut aya::maps::Map> for aya::maps::XskMap<&'a mut aya::maps::MapData>
  2130. pub type aya::maps::XskMap<&'a mut aya::maps::MapData>::Error = aya::maps::MapError
  2131. pub fn aya::maps::XskMap<&'a mut aya::maps::MapData>::try_from(map: &'a mut aya::maps::Map) -> core::result::Result<Self, Self::Error>
  2132. impl<T> core::marker::Send for aya::maps::XskMap<T> where T: core::marker::Send
  2133. impl<T> core::marker::Sync for aya::maps::XskMap<T> where T: core::marker::Sync
  2134. impl<T> core::marker::Unpin for aya::maps::XskMap<T> where T: core::marker::Unpin
  2135. impl<T> core::panic::unwind_safe::RefUnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::RefUnwindSafe
  2136. impl<T> core::panic::unwind_safe::UnwindSafe for aya::maps::XskMap<T> where T: core::panic::unwind_safe::UnwindSafe
  2137. impl<T, U> core::convert::Into<U> for aya::maps::XskMap<T> where U: core::convert::From<T>
  2138. pub fn aya::maps::XskMap<T>::into(self) -> U
  2139. impl<T, U> core::convert::TryFrom<U> for aya::maps::XskMap<T> where U: core::convert::Into<T>
  2140. pub type aya::maps::XskMap<T>::Error = core::convert::Infallible
  2141. pub fn aya::maps::XskMap<T>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2142. impl<T, U> core::convert::TryInto<U> for aya::maps::XskMap<T> where U: core::convert::TryFrom<T>
  2143. pub type aya::maps::XskMap<T>::Error = <U as core::convert::TryFrom<T>>::Error
  2144. pub fn aya::maps::XskMap<T>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2145. impl<T> core::any::Any for aya::maps::XskMap<T> where T: 'static + core::marker::Sized
  2146. pub fn aya::maps::XskMap<T>::type_id(&self) -> core::any::TypeId
  2147. impl<T> core::borrow::Borrow<T> for aya::maps::XskMap<T> where T: core::marker::Sized
  2148. pub fn aya::maps::XskMap<T>::borrow(&self) -> &T
  2149. impl<T> core::borrow::BorrowMut<T> for aya::maps::XskMap<T> where T: core::marker::Sized
  2150. pub fn aya::maps::XskMap<T>::borrow_mut(&mut self) -> &mut T
  2151. impl<T> core::convert::From<T> for aya::maps::XskMap<T>
  2152. pub fn aya::maps::XskMap<T>::from(t: T) -> T
  2153. pub trait aya::maps::IterableMap<K: aya::Pod, V>
  2154. pub fn aya::maps::IterableMap::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2155. pub fn aya::maps::IterableMap::map(&self) -> &aya::maps::MapData
  2156. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, V> for aya::maps::hash_map::HashMap<T, K, V>
  2157. pub fn aya::maps::hash_map::HashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<V, aya::maps::MapError>
  2158. pub fn aya::maps::hash_map::HashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2159. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<K, aya::maps::PerCpuValues<V>> for aya::maps::hash_map::PerCpuHashMap<T, K, V>
  2160. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::get(&self, key: &K) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2161. pub fn aya::maps::hash_map::PerCpuHashMap<T, K, V>::map(&self) -> &aya::maps::MapData
  2162. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod, V: aya::Pod> aya::maps::IterableMap<aya::maps::lpm_trie::Key<K>, V> for aya::maps::lpm_trie::LpmTrie<T, K, V>
  2163. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::get(&self, key: &aya::maps::lpm_trie::Key<K>) -> core::result::Result<V, aya::maps::MapError>
  2164. pub fn aya::maps::lpm_trie::LpmTrie<T, K, V>::map(&self) -> &aya::maps::MapData
  2165. impl<T: core::borrow::Borrow<aya::maps::MapData>, K: aya::Pod> aya::maps::IterableMap<K, i32> for aya::maps::SockHash<T, K>
  2166. pub fn aya::maps::SockHash<T, K>::get(&self, key: &K) -> core::result::Result<std::os::fd::raw::RawFd, aya::maps::MapError>
  2167. pub fn aya::maps::SockHash<T, K>::map(&self) -> &aya::maps::MapData
  2168. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, V> for aya::maps::array::Array<T, V>
  2169. pub fn aya::maps::array::Array<T, V>::get(&self, index: &u32) -> core::result::Result<V, aya::maps::MapError>
  2170. pub fn aya::maps::array::Array<T, V>::map(&self) -> &aya::maps::MapData
  2171. impl<T: core::borrow::Borrow<aya::maps::MapData>, V: aya::Pod> aya::maps::IterableMap<u32, aya::maps::PerCpuValues<V>> for aya::maps::PerCpuArray<T, V>
  2172. pub fn aya::maps::PerCpuArray<T, V>::get(&self, index: &u32) -> core::result::Result<aya::maps::PerCpuValues<V>, aya::maps::MapError>
  2173. pub fn aya::maps::PerCpuArray<T, V>::map(&self) -> &aya::maps::MapData
  2174. impl<T: core::borrow::Borrow<aya::maps::MapData>> aya::maps::IterableMap<u32, aya::maps::stack_trace::StackTrace> for aya::maps::stack_trace::StackTraceMap<T>
  2175. pub fn aya::maps::stack_trace::StackTraceMap<T>::get(&self, index: &u32) -> core::result::Result<aya::maps::stack_trace::StackTrace, aya::maps::MapError>
  2176. pub fn aya::maps::stack_trace::StackTraceMap<T>::map(&self) -> &aya::maps::MapData
  2177. pub mod aya::pin
  2178. pub enum aya::pin::PinError
  2179. pub aya::pin::PinError::InvalidPinPath
  2180. pub aya::pin::PinError::InvalidPinPath::error: alloc::ffi::c_str::NulError
  2181. pub aya::pin::PinError::InvalidPinPath::path: std::path::PathBuf
  2182. pub aya::pin::PinError::NoFd
  2183. pub aya::pin::PinError::NoFd::name: alloc::string::String
  2184. pub aya::pin::PinError::SyscallError(crate::sys::SyscallError)
  2185. impl core::error::Error for aya::pin::PinError
  2186. pub fn aya::pin::PinError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  2187. impl core::fmt::Display for aya::pin::PinError
  2188. pub fn aya::pin::PinError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2189. impl core::fmt::Debug for aya::pin::PinError
  2190. pub fn aya::pin::PinError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2191. impl core::marker::Send for aya::pin::PinError
  2192. impl core::marker::Sync for aya::pin::PinError
  2193. impl core::marker::Unpin for aya::pin::PinError
  2194. impl !core::panic::unwind_safe::RefUnwindSafe for aya::pin::PinError
  2195. impl !core::panic::unwind_safe::UnwindSafe for aya::pin::PinError
  2196. impl<T, U> core::convert::Into<U> for aya::pin::PinError where U: core::convert::From<T>
  2197. pub fn aya::pin::PinError::into(self) -> U
  2198. impl<T, U> core::convert::TryFrom<U> for aya::pin::PinError where U: core::convert::Into<T>
  2199. pub type aya::pin::PinError::Error = core::convert::Infallible
  2200. pub fn aya::pin::PinError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2201. impl<T, U> core::convert::TryInto<U> for aya::pin::PinError where U: core::convert::TryFrom<T>
  2202. pub type aya::pin::PinError::Error = <U as core::convert::TryFrom<T>>::Error
  2203. pub fn aya::pin::PinError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2204. impl<T> alloc::string::ToString for aya::pin::PinError where T: core::fmt::Display + core::marker::Sized
  2205. pub fn aya::pin::PinError::to_string(&self) -> alloc::string::String
  2206. impl<T> core::any::Any for aya::pin::PinError where T: 'static + core::marker::Sized
  2207. pub fn aya::pin::PinError::type_id(&self) -> core::any::TypeId
  2208. impl<T> core::borrow::Borrow<T> for aya::pin::PinError where T: core::marker::Sized
  2209. pub fn aya::pin::PinError::borrow(&self) -> &T
  2210. impl<T> core::borrow::BorrowMut<T> for aya::pin::PinError where T: core::marker::Sized
  2211. pub fn aya::pin::PinError::borrow_mut(&mut self) -> &mut T
  2212. impl<T> core::convert::From<T> for aya::pin::PinError
  2213. pub fn aya::pin::PinError::from(t: T) -> T
  2214. pub mod aya::programs
  2215. pub use aya::programs::CgroupSockAddrAttachType
  2216. pub use aya::programs::CgroupSockAttachType
  2217. pub use aya::programs::CgroupSockoptAttachType
  2218. pub mod aya::programs::cgroup_device
  2219. pub struct aya::programs::cgroup_device::CgroupDevice
  2220. impl aya::programs::cgroup_device::CgroupDevice
  2221. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  2222. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2223. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2224. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  2225. impl aya::programs::cgroup_device::CgroupDevice
  2226. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2227. impl aya::programs::cgroup_device::CgroupDevice
  2228. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  2229. impl aya::programs::cgroup_device::CgroupDevice
  2230. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2231. impl aya::programs::cgroup_device::CgroupDevice
  2232. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2233. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2234. impl aya::programs::cgroup_device::CgroupDevice
  2235. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2236. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  2237. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  2238. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  2239. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2240. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2241. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  2242. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  2243. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  2244. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  2245. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2246. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  2247. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  2248. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  2249. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2250. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  2251. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  2252. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  2253. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  2254. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  2255. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2256. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  2257. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  2258. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2259. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + core::marker::Sized
  2260. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  2261. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized
  2262. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  2263. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized
  2264. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  2265. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  2266. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  2267. pub struct aya::programs::cgroup_device::CgroupDeviceLink(_)
  2268. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  2269. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  2270. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2271. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  2272. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDeviceLink
  2273. pub fn aya::programs::cgroup_device::CgroupDeviceLink::drop(&mut self)
  2274. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLink
  2275. pub fn aya::programs::cgroup_device::CgroupDeviceLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2276. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLink
  2277. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLink
  2278. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLink
  2279. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2280. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLink
  2281. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::From<T>
  2282. pub fn aya::programs::cgroup_device::CgroupDeviceLink::into(self) -> U
  2283. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::Into<T>
  2284. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = core::convert::Infallible
  2285. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2286. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLink where U: core::convert::TryFrom<T>
  2287. pub type aya::programs::cgroup_device::CgroupDeviceLink::Error = <U as core::convert::TryFrom<T>>::Error
  2288. pub fn aya::programs::cgroup_device::CgroupDeviceLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2289. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLink where T: 'static + core::marker::Sized
  2290. pub fn aya::programs::cgroup_device::CgroupDeviceLink::type_id(&self) -> core::any::TypeId
  2291. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: core::marker::Sized
  2292. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow(&self) -> &T
  2293. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLink where T: core::marker::Sized
  2294. pub fn aya::programs::cgroup_device::CgroupDeviceLink::borrow_mut(&mut self) -> &mut T
  2295. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLink
  2296. pub fn aya::programs::cgroup_device::CgroupDeviceLink::from(t: T) -> T
  2297. pub struct aya::programs::cgroup_device::CgroupDeviceLinkId(_)
  2298. impl core::cmp::Eq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2299. impl core::cmp::PartialEq<aya::programs::cgroup_device::CgroupDeviceLinkId> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2300. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::eq(&self, other: &aya::programs::cgroup_device::CgroupDeviceLinkId) -> bool
  2301. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDeviceLinkId
  2302. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2303. impl core::hash::Hash for aya::programs::cgroup_device::CgroupDeviceLinkId
  2304. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2305. impl core::marker::StructuralEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2306. impl core::marker::StructuralPartialEq for aya::programs::cgroup_device::CgroupDeviceLinkId
  2307. impl core::marker::Send for aya::programs::cgroup_device::CgroupDeviceLinkId
  2308. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDeviceLinkId
  2309. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDeviceLinkId
  2310. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2311. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDeviceLinkId
  2312. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::From<T>
  2313. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::into(self) -> U
  2314. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::Into<T>
  2315. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = core::convert::Infallible
  2316. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2317. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDeviceLinkId where U: core::convert::TryFrom<T>
  2318. pub type aya::programs::cgroup_device::CgroupDeviceLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2319. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2320. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDeviceLinkId where T: 'static + core::marker::Sized
  2321. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::type_id(&self) -> core::any::TypeId
  2322. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: core::marker::Sized
  2323. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow(&self) -> &T
  2324. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDeviceLinkId where T: core::marker::Sized
  2325. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::borrow_mut(&mut self) -> &mut T
  2326. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDeviceLinkId
  2327. pub fn aya::programs::cgroup_device::CgroupDeviceLinkId::from(t: T) -> T
  2328. pub mod aya::programs::cgroup_skb
  2329. pub enum aya::programs::cgroup_skb::CgroupSkbAttachType
  2330. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Egress
  2331. pub aya::programs::cgroup_skb::CgroupSkbAttachType::Ingress
  2332. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  2333. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  2334. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  2335. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2336. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  2337. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  2338. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  2339. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  2340. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2341. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  2342. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  2343. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  2344. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  2345. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  2346. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2347. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  2348. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  2349. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2350. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  2351. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  2352. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  2353. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  2354. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + core::marker::Sized
  2355. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  2356. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized
  2357. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  2358. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized
  2359. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  2360. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  2361. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  2362. pub struct aya::programs::cgroup_skb::CgroupSkb
  2363. impl aya::programs::cgroup_skb::CgroupSkb
  2364. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  2365. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2366. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  2367. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2368. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2369. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  2370. impl aya::programs::cgroup_skb::CgroupSkb
  2371. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2372. impl aya::programs::cgroup_skb::CgroupSkb
  2373. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2374. impl aya::programs::cgroup_skb::CgroupSkb
  2375. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2376. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2377. impl aya::programs::cgroup_skb::CgroupSkb
  2378. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2379. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  2380. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  2381. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  2382. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2383. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2384. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  2385. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  2386. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  2387. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  2388. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2389. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  2390. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  2391. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  2392. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2393. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  2394. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  2395. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  2396. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  2397. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  2398. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2399. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  2400. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  2401. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2402. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + core::marker::Sized
  2403. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  2404. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized
  2405. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  2406. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized
  2407. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  2408. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  2409. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  2410. pub struct aya::programs::cgroup_skb::CgroupSkbLink(_)
  2411. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  2412. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  2413. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2414. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  2415. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkbLink
  2416. pub fn aya::programs::cgroup_skb::CgroupSkbLink::drop(&mut self)
  2417. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLink
  2418. pub fn aya::programs::cgroup_skb::CgroupSkbLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2419. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLink
  2420. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLink
  2421. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLink
  2422. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2423. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLink
  2424. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::From<T>
  2425. pub fn aya::programs::cgroup_skb::CgroupSkbLink::into(self) -> U
  2426. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::Into<T>
  2427. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = core::convert::Infallible
  2428. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2429. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLink where U: core::convert::TryFrom<T>
  2430. pub type aya::programs::cgroup_skb::CgroupSkbLink::Error = <U as core::convert::TryFrom<T>>::Error
  2431. pub fn aya::programs::cgroup_skb::CgroupSkbLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2432. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLink where T: 'static + core::marker::Sized
  2433. pub fn aya::programs::cgroup_skb::CgroupSkbLink::type_id(&self) -> core::any::TypeId
  2434. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: core::marker::Sized
  2435. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow(&self) -> &T
  2436. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLink where T: core::marker::Sized
  2437. pub fn aya::programs::cgroup_skb::CgroupSkbLink::borrow_mut(&mut self) -> &mut T
  2438. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLink
  2439. pub fn aya::programs::cgroup_skb::CgroupSkbLink::from(t: T) -> T
  2440. pub struct aya::programs::cgroup_skb::CgroupSkbLinkId(_)
  2441. impl core::cmp::Eq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2442. impl core::cmp::PartialEq<aya::programs::cgroup_skb::CgroupSkbLinkId> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2443. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::eq(&self, other: &aya::programs::cgroup_skb::CgroupSkbLinkId) -> bool
  2444. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbLinkId
  2445. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2446. impl core::hash::Hash for aya::programs::cgroup_skb::CgroupSkbLinkId
  2447. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2448. impl core::marker::StructuralEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2449. impl core::marker::StructuralPartialEq for aya::programs::cgroup_skb::CgroupSkbLinkId
  2450. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbLinkId
  2451. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbLinkId
  2452. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbLinkId
  2453. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2454. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbLinkId
  2455. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::From<T>
  2456. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::into(self) -> U
  2457. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::Into<T>
  2458. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = core::convert::Infallible
  2459. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2460. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbLinkId where U: core::convert::TryFrom<T>
  2461. pub type aya::programs::cgroup_skb::CgroupSkbLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2462. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2463. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbLinkId where T: 'static + core::marker::Sized
  2464. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::type_id(&self) -> core::any::TypeId
  2465. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: core::marker::Sized
  2466. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow(&self) -> &T
  2467. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbLinkId where T: core::marker::Sized
  2468. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::borrow_mut(&mut self) -> &mut T
  2469. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbLinkId
  2470. pub fn aya::programs::cgroup_skb::CgroupSkbLinkId::from(t: T) -> T
  2471. pub mod aya::programs::cgroup_sock
  2472. pub use aya::programs::cgroup_sock::CgroupSockAttachType
  2473. pub struct aya::programs::cgroup_sock::CgroupSock
  2474. impl aya::programs::cgroup_sock::CgroupSock
  2475. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  2476. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2477. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2478. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2479. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  2480. impl aya::programs::cgroup_sock::CgroupSock
  2481. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2482. impl aya::programs::cgroup_sock::CgroupSock
  2483. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2484. impl aya::programs::cgroup_sock::CgroupSock
  2485. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2486. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2487. impl aya::programs::cgroup_sock::CgroupSock
  2488. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2489. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  2490. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  2491. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  2492. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2493. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2494. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  2495. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  2496. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  2497. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  2498. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2499. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  2500. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  2501. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  2502. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2503. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  2504. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  2505. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  2506. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  2507. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  2508. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2509. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  2510. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  2511. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2512. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + core::marker::Sized
  2513. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  2514. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized
  2515. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  2516. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized
  2517. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  2518. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  2519. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  2520. pub struct aya::programs::cgroup_sock::CgroupSockLink(_)
  2521. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  2522. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  2523. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2524. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  2525. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSockLink
  2526. pub fn aya::programs::cgroup_sock::CgroupSockLink::drop(&mut self)
  2527. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLink
  2528. pub fn aya::programs::cgroup_sock::CgroupSockLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2529. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLink
  2530. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLink
  2531. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLink
  2532. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2533. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLink
  2534. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::From<T>
  2535. pub fn aya::programs::cgroup_sock::CgroupSockLink::into(self) -> U
  2536. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::Into<T>
  2537. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = core::convert::Infallible
  2538. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2539. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLink where U: core::convert::TryFrom<T>
  2540. pub type aya::programs::cgroup_sock::CgroupSockLink::Error = <U as core::convert::TryFrom<T>>::Error
  2541. pub fn aya::programs::cgroup_sock::CgroupSockLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2542. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLink where T: 'static + core::marker::Sized
  2543. pub fn aya::programs::cgroup_sock::CgroupSockLink::type_id(&self) -> core::any::TypeId
  2544. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLink where T: core::marker::Sized
  2545. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow(&self) -> &T
  2546. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLink where T: core::marker::Sized
  2547. pub fn aya::programs::cgroup_sock::CgroupSockLink::borrow_mut(&mut self) -> &mut T
  2548. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLink
  2549. pub fn aya::programs::cgroup_sock::CgroupSockLink::from(t: T) -> T
  2550. pub struct aya::programs::cgroup_sock::CgroupSockLinkId(_)
  2551. impl core::cmp::Eq for aya::programs::cgroup_sock::CgroupSockLinkId
  2552. impl core::cmp::PartialEq<aya::programs::cgroup_sock::CgroupSockLinkId> for aya::programs::cgroup_sock::CgroupSockLinkId
  2553. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::eq(&self, other: &aya::programs::cgroup_sock::CgroupSockLinkId) -> bool
  2554. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSockLinkId
  2555. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2556. impl core::hash::Hash for aya::programs::cgroup_sock::CgroupSockLinkId
  2557. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2558. impl core::marker::StructuralEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2559. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock::CgroupSockLinkId
  2560. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSockLinkId
  2561. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSockLinkId
  2562. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSockLinkId
  2563. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2564. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSockLinkId
  2565. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::From<T>
  2566. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::into(self) -> U
  2567. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::Into<T>
  2568. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = core::convert::Infallible
  2569. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2570. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSockLinkId where U: core::convert::TryFrom<T>
  2571. pub type aya::programs::cgroup_sock::CgroupSockLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2572. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2573. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSockLinkId where T: 'static + core::marker::Sized
  2574. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::type_id(&self) -> core::any::TypeId
  2575. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: core::marker::Sized
  2576. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow(&self) -> &T
  2577. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSockLinkId where T: core::marker::Sized
  2578. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::borrow_mut(&mut self) -> &mut T
  2579. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSockLinkId
  2580. pub fn aya::programs::cgroup_sock::CgroupSockLinkId::from(t: T) -> T
  2581. pub mod aya::programs::cgroup_sock_addr
  2582. pub use aya::programs::cgroup_sock_addr::CgroupSockAddrAttachType
  2583. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddr
  2584. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2585. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  2586. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2587. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2588. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2589. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  2590. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2591. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2592. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2593. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2594. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2595. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2596. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2597. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  2598. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2599. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2600. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  2601. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  2602. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2603. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2604. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  2605. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  2606. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  2607. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2608. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2609. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2610. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2611. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2612. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2613. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2614. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  2615. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  2616. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  2617. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  2618. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2619. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  2620. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  2621. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2622. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + core::marker::Sized
  2623. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  2624. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized
  2625. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  2626. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized
  2627. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  2628. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  2629. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  2630. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLink(_)
  2631. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2632. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2633. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2634. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  2635. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2636. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::drop(&mut self)
  2637. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2638. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2639. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2640. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2641. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2642. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2643. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2644. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::From<T>
  2645. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::into(self) -> U
  2646. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::Into<T>
  2647. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = core::convert::Infallible
  2648. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2649. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where U: core::convert::TryFrom<T>
  2650. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Error = <U as core::convert::TryFrom<T>>::Error
  2651. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2652. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: 'static + core::marker::Sized
  2653. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::type_id(&self) -> core::any::TypeId
  2654. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: core::marker::Sized
  2655. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow(&self) -> &T
  2656. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink where T: core::marker::Sized
  2657. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::borrow_mut(&mut self) -> &mut T
  2658. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  2659. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::from(t: T) -> T
  2660. pub struct aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId(_)
  2661. impl core::cmp::Eq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2662. impl core::cmp::PartialEq<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2663. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::eq(&self, other: &aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> bool
  2664. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2665. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2666. impl core::hash::Hash for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2667. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2668. impl core::marker::StructuralEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2669. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2670. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2671. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2672. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2673. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2674. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2675. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::From<T>
  2676. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::into(self) -> U
  2677. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::Into<T>
  2678. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = core::convert::Infallible
  2679. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2680. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where U: core::convert::TryFrom<T>
  2681. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2682. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2683. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: 'static + core::marker::Sized
  2684. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::type_id(&self) -> core::any::TypeId
  2685. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: core::marker::Sized
  2686. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow(&self) -> &T
  2687. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId where T: core::marker::Sized
  2688. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::borrow_mut(&mut self) -> &mut T
  2689. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  2690. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId::from(t: T) -> T
  2691. pub mod aya::programs::cgroup_sockopt
  2692. pub use aya::programs::cgroup_sockopt::CgroupSockoptAttachType
  2693. pub struct aya::programs::cgroup_sockopt::CgroupSockopt
  2694. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2695. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  2696. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2697. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  2698. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2699. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  2700. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2701. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2702. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2703. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2704. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2705. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2706. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2707. impl aya::programs::cgroup_sockopt::CgroupSockopt
  2708. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2709. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  2710. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  2711. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  2712. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  2713. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  2714. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  2715. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  2716. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  2717. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  2718. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2719. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  2720. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  2721. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  2722. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  2723. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  2724. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  2725. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  2726. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  2727. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  2728. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2729. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  2730. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  2731. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2732. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + core::marker::Sized
  2733. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  2734. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized
  2735. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  2736. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized
  2737. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  2738. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  2739. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  2740. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLink(_)
  2741. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2742. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2743. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2744. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  2745. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2746. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::drop(&mut self)
  2747. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2748. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2749. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2750. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2751. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2752. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2753. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2754. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::From<T>
  2755. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::into(self) -> U
  2756. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::Into<T>
  2757. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = core::convert::Infallible
  2758. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2759. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLink where U: core::convert::TryFrom<T>
  2760. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Error = <U as core::convert::TryFrom<T>>::Error
  2761. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2762. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: 'static + core::marker::Sized
  2763. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::type_id(&self) -> core::any::TypeId
  2764. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: core::marker::Sized
  2765. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow(&self) -> &T
  2766. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink where T: core::marker::Sized
  2767. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::borrow_mut(&mut self) -> &mut T
  2768. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLink
  2769. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::from(t: T) -> T
  2770. pub struct aya::programs::cgroup_sockopt::CgroupSockoptLinkId(_)
  2771. impl core::cmp::Eq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2772. impl core::cmp::PartialEq<aya::programs::cgroup_sockopt::CgroupSockoptLinkId> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2773. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::eq(&self, other: &aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> bool
  2774. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2775. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2776. impl core::hash::Hash for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2777. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2778. impl core::marker::StructuralEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2779. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2780. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2781. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2782. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2783. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2784. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2785. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::From<T>
  2786. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::into(self) -> U
  2787. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::Into<T>
  2788. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = core::convert::Infallible
  2789. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2790. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where U: core::convert::TryFrom<T>
  2791. pub type aya::programs::cgroup_sockopt::CgroupSockoptLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2792. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2793. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: 'static + core::marker::Sized
  2794. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::type_id(&self) -> core::any::TypeId
  2795. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: core::marker::Sized
  2796. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow(&self) -> &T
  2797. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId where T: core::marker::Sized
  2798. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::borrow_mut(&mut self) -> &mut T
  2799. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  2800. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLinkId::from(t: T) -> T
  2801. pub mod aya::programs::cgroup_sysctl
  2802. pub struct aya::programs::cgroup_sysctl::CgroupSysctl
  2803. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2804. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  2805. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2806. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2807. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  2808. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2809. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2810. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2811. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  2812. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2813. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2814. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2815. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2816. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2817. impl aya::programs::cgroup_sysctl::CgroupSysctl
  2818. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2819. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  2820. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  2821. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  2822. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  2823. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  2824. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  2825. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  2826. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  2827. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  2828. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2829. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  2830. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  2831. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  2832. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  2833. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  2834. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  2835. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  2836. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  2837. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  2838. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2839. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  2840. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  2841. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2842. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + core::marker::Sized
  2843. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  2844. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized
  2845. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  2846. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized
  2847. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  2848. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  2849. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  2850. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLink(_)
  2851. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2852. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2853. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2854. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  2855. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2856. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::drop(&mut self)
  2857. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2858. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2859. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2860. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2861. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2862. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2863. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2864. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::From<T>
  2865. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::into(self) -> U
  2866. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::Into<T>
  2867. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = core::convert::Infallible
  2868. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2869. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLink where U: core::convert::TryFrom<T>
  2870. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Error = <U as core::convert::TryFrom<T>>::Error
  2871. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2872. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: 'static + core::marker::Sized
  2873. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::type_id(&self) -> core::any::TypeId
  2874. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: core::marker::Sized
  2875. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow(&self) -> &T
  2876. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink where T: core::marker::Sized
  2877. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::borrow_mut(&mut self) -> &mut T
  2878. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLink
  2879. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::from(t: T) -> T
  2880. pub struct aya::programs::cgroup_sysctl::CgroupSysctlLinkId(_)
  2881. impl core::cmp::Eq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2882. impl core::cmp::PartialEq<aya::programs::cgroup_sysctl::CgroupSysctlLinkId> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2883. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::eq(&self, other: &aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> bool
  2884. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2885. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2886. impl core::hash::Hash for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2887. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  2888. impl core::marker::StructuralEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2889. impl core::marker::StructuralPartialEq for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2890. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2891. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2892. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2893. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2894. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2895. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::From<T>
  2896. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::into(self) -> U
  2897. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::Into<T>
  2898. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = core::convert::Infallible
  2899. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2900. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where U: core::convert::TryFrom<T>
  2901. pub type aya::programs::cgroup_sysctl::CgroupSysctlLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  2902. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2903. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: 'static + core::marker::Sized
  2904. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::type_id(&self) -> core::any::TypeId
  2905. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: core::marker::Sized
  2906. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow(&self) -> &T
  2907. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId where T: core::marker::Sized
  2908. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::borrow_mut(&mut self) -> &mut T
  2909. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  2910. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLinkId::from(t: T) -> T
  2911. pub mod aya::programs::extension
  2912. pub enum aya::programs::extension::ExtensionError
  2913. pub aya::programs::extension::ExtensionError::NoBTF
  2914. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  2915. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  2916. impl core::error::Error for aya::programs::extension::ExtensionError
  2917. impl core::fmt::Display for aya::programs::extension::ExtensionError
  2918. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2919. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  2920. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2921. impl core::marker::Send for aya::programs::extension::ExtensionError
  2922. impl core::marker::Sync for aya::programs::extension::ExtensionError
  2923. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  2924. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  2925. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  2926. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  2927. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  2928. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  2929. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  2930. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2931. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  2932. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  2933. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2934. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + core::marker::Sized
  2935. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  2936. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + core::marker::Sized
  2937. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  2938. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: core::marker::Sized
  2939. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  2940. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: core::marker::Sized
  2941. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  2942. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  2943. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  2944. pub struct aya::programs::extension::Extension
  2945. impl aya::programs::extension::Extension
  2946. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  2947. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  2948. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  2949. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  2950. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  2951. impl aya::programs::extension::Extension
  2952. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  2953. impl aya::programs::extension::Extension
  2954. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  2955. impl aya::programs::extension::Extension
  2956. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  2957. impl aya::programs::extension::Extension
  2958. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  2959. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  2960. impl aya::programs::extension::Extension
  2961. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  2962. impl core::ops::drop::Drop for aya::programs::extension::Extension
  2963. pub fn aya::programs::extension::Extension::drop(&mut self)
  2964. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  2965. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  2966. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  2967. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  2968. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  2969. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  2970. impl core::fmt::Debug for aya::programs::extension::Extension
  2971. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  2972. impl core::marker::Send for aya::programs::extension::Extension
  2973. impl core::marker::Sync for aya::programs::extension::Extension
  2974. impl core::marker::Unpin for aya::programs::extension::Extension
  2975. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  2976. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  2977. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  2978. pub fn aya::programs::extension::Extension::into(self) -> U
  2979. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  2980. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  2981. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  2982. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  2983. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  2984. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  2985. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + core::marker::Sized
  2986. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  2987. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: core::marker::Sized
  2988. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  2989. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: core::marker::Sized
  2990. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  2991. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  2992. pub fn aya::programs::extension::Extension::from(t: T) -> T
  2993. pub struct aya::programs::extension::ExtensionLink(_)
  2994. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  2995. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  2996. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  2997. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  2998. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  2999. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  3000. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  3001. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  3002. impl core::ops::drop::Drop for aya::programs::extension::ExtensionLink
  3003. pub fn aya::programs::extension::ExtensionLink::drop(&mut self)
  3004. impl core::fmt::Debug for aya::programs::extension::ExtensionLink
  3005. pub fn aya::programs::extension::ExtensionLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3006. impl core::marker::Send for aya::programs::extension::ExtensionLink
  3007. impl core::marker::Sync for aya::programs::extension::ExtensionLink
  3008. impl core::marker::Unpin for aya::programs::extension::ExtensionLink
  3009. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLink
  3010. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLink
  3011. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLink where U: core::convert::From<T>
  3012. pub fn aya::programs::extension::ExtensionLink::into(self) -> U
  3013. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLink where U: core::convert::Into<T>
  3014. pub type aya::programs::extension::ExtensionLink::Error = core::convert::Infallible
  3015. pub fn aya::programs::extension::ExtensionLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3016. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLink where U: core::convert::TryFrom<T>
  3017. pub type aya::programs::extension::ExtensionLink::Error = <U as core::convert::TryFrom<T>>::Error
  3018. pub fn aya::programs::extension::ExtensionLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3019. impl<T> core::any::Any for aya::programs::extension::ExtensionLink where T: 'static + core::marker::Sized
  3020. pub fn aya::programs::extension::ExtensionLink::type_id(&self) -> core::any::TypeId
  3021. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLink where T: core::marker::Sized
  3022. pub fn aya::programs::extension::ExtensionLink::borrow(&self) -> &T
  3023. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLink where T: core::marker::Sized
  3024. pub fn aya::programs::extension::ExtensionLink::borrow_mut(&mut self) -> &mut T
  3025. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLink
  3026. pub fn aya::programs::extension::ExtensionLink::from(t: T) -> T
  3027. pub struct aya::programs::extension::ExtensionLinkId(_)
  3028. impl core::cmp::Eq for aya::programs::extension::ExtensionLinkId
  3029. impl core::cmp::PartialEq<aya::programs::extension::ExtensionLinkId> for aya::programs::extension::ExtensionLinkId
  3030. pub fn aya::programs::extension::ExtensionLinkId::eq(&self, other: &aya::programs::extension::ExtensionLinkId) -> bool
  3031. impl core::fmt::Debug for aya::programs::extension::ExtensionLinkId
  3032. pub fn aya::programs::extension::ExtensionLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3033. impl core::hash::Hash for aya::programs::extension::ExtensionLinkId
  3034. pub fn aya::programs::extension::ExtensionLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3035. impl core::marker::StructuralEq for aya::programs::extension::ExtensionLinkId
  3036. impl core::marker::StructuralPartialEq for aya::programs::extension::ExtensionLinkId
  3037. impl core::marker::Send for aya::programs::extension::ExtensionLinkId
  3038. impl core::marker::Sync for aya::programs::extension::ExtensionLinkId
  3039. impl core::marker::Unpin for aya::programs::extension::ExtensionLinkId
  3040. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionLinkId
  3041. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionLinkId
  3042. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::From<T>
  3043. pub fn aya::programs::extension::ExtensionLinkId::into(self) -> U
  3044. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::Into<T>
  3045. pub type aya::programs::extension::ExtensionLinkId::Error = core::convert::Infallible
  3046. pub fn aya::programs::extension::ExtensionLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3047. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionLinkId where U: core::convert::TryFrom<T>
  3048. pub type aya::programs::extension::ExtensionLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3049. pub fn aya::programs::extension::ExtensionLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3050. impl<T> core::any::Any for aya::programs::extension::ExtensionLinkId where T: 'static + core::marker::Sized
  3051. pub fn aya::programs::extension::ExtensionLinkId::type_id(&self) -> core::any::TypeId
  3052. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionLinkId where T: core::marker::Sized
  3053. pub fn aya::programs::extension::ExtensionLinkId::borrow(&self) -> &T
  3054. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionLinkId where T: core::marker::Sized
  3055. pub fn aya::programs::extension::ExtensionLinkId::borrow_mut(&mut self) -> &mut T
  3056. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionLinkId
  3057. pub fn aya::programs::extension::ExtensionLinkId::from(t: T) -> T
  3058. pub mod aya::programs::fentry
  3059. pub struct aya::programs::fentry::FEntry
  3060. impl aya::programs::fentry::FEntry
  3061. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  3062. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3063. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3064. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  3065. impl aya::programs::fentry::FEntry
  3066. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3067. impl aya::programs::fentry::FEntry
  3068. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3069. impl aya::programs::fentry::FEntry
  3070. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3071. impl aya::programs::fentry::FEntry
  3072. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3073. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3074. impl aya::programs::fentry::FEntry
  3075. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3076. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  3077. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  3078. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  3079. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3080. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3081. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  3082. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  3083. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  3084. impl core::fmt::Debug for aya::programs::fentry::FEntry
  3085. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3086. impl core::marker::Send for aya::programs::fentry::FEntry
  3087. impl core::marker::Sync for aya::programs::fentry::FEntry
  3088. impl core::marker::Unpin for aya::programs::fentry::FEntry
  3089. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  3090. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  3091. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  3092. pub fn aya::programs::fentry::FEntry::into(self) -> U
  3093. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  3094. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  3095. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3096. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  3097. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  3098. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3099. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + core::marker::Sized
  3100. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  3101. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: core::marker::Sized
  3102. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  3103. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: core::marker::Sized
  3104. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  3105. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  3106. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  3107. pub struct aya::programs::fentry::FEntryLink(_)
  3108. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  3109. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  3110. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3111. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  3112. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  3113. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  3114. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  3115. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  3116. impl core::ops::drop::Drop for aya::programs::fentry::FEntryLink
  3117. pub fn aya::programs::fentry::FEntryLink::drop(&mut self)
  3118. impl core::fmt::Debug for aya::programs::fentry::FEntryLink
  3119. pub fn aya::programs::fentry::FEntryLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3120. impl core::marker::Send for aya::programs::fentry::FEntryLink
  3121. impl core::marker::Sync for aya::programs::fentry::FEntryLink
  3122. impl core::marker::Unpin for aya::programs::fentry::FEntryLink
  3123. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLink
  3124. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLink
  3125. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLink where U: core::convert::From<T>
  3126. pub fn aya::programs::fentry::FEntryLink::into(self) -> U
  3127. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLink where U: core::convert::Into<T>
  3128. pub type aya::programs::fentry::FEntryLink::Error = core::convert::Infallible
  3129. pub fn aya::programs::fentry::FEntryLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3130. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLink where U: core::convert::TryFrom<T>
  3131. pub type aya::programs::fentry::FEntryLink::Error = <U as core::convert::TryFrom<T>>::Error
  3132. pub fn aya::programs::fentry::FEntryLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3133. impl<T> core::any::Any for aya::programs::fentry::FEntryLink where T: 'static + core::marker::Sized
  3134. pub fn aya::programs::fentry::FEntryLink::type_id(&self) -> core::any::TypeId
  3135. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLink where T: core::marker::Sized
  3136. pub fn aya::programs::fentry::FEntryLink::borrow(&self) -> &T
  3137. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLink where T: core::marker::Sized
  3138. pub fn aya::programs::fentry::FEntryLink::borrow_mut(&mut self) -> &mut T
  3139. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLink
  3140. pub fn aya::programs::fentry::FEntryLink::from(t: T) -> T
  3141. pub struct aya::programs::fentry::FEntryLinkId(_)
  3142. impl core::cmp::Eq for aya::programs::fentry::FEntryLinkId
  3143. impl core::cmp::PartialEq<aya::programs::fentry::FEntryLinkId> for aya::programs::fentry::FEntryLinkId
  3144. pub fn aya::programs::fentry::FEntryLinkId::eq(&self, other: &aya::programs::fentry::FEntryLinkId) -> bool
  3145. impl core::fmt::Debug for aya::programs::fentry::FEntryLinkId
  3146. pub fn aya::programs::fentry::FEntryLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3147. impl core::hash::Hash for aya::programs::fentry::FEntryLinkId
  3148. pub fn aya::programs::fentry::FEntryLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3149. impl core::marker::StructuralEq for aya::programs::fentry::FEntryLinkId
  3150. impl core::marker::StructuralPartialEq for aya::programs::fentry::FEntryLinkId
  3151. impl core::marker::Send for aya::programs::fentry::FEntryLinkId
  3152. impl core::marker::Sync for aya::programs::fentry::FEntryLinkId
  3153. impl core::marker::Unpin for aya::programs::fentry::FEntryLinkId
  3154. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntryLinkId
  3155. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntryLinkId
  3156. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::From<T>
  3157. pub fn aya::programs::fentry::FEntryLinkId::into(self) -> U
  3158. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::Into<T>
  3159. pub type aya::programs::fentry::FEntryLinkId::Error = core::convert::Infallible
  3160. pub fn aya::programs::fentry::FEntryLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3161. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntryLinkId where U: core::convert::TryFrom<T>
  3162. pub type aya::programs::fentry::FEntryLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3163. pub fn aya::programs::fentry::FEntryLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3164. impl<T> core::any::Any for aya::programs::fentry::FEntryLinkId where T: 'static + core::marker::Sized
  3165. pub fn aya::programs::fentry::FEntryLinkId::type_id(&self) -> core::any::TypeId
  3166. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntryLinkId where T: core::marker::Sized
  3167. pub fn aya::programs::fentry::FEntryLinkId::borrow(&self) -> &T
  3168. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntryLinkId where T: core::marker::Sized
  3169. pub fn aya::programs::fentry::FEntryLinkId::borrow_mut(&mut self) -> &mut T
  3170. impl<T> core::convert::From<T> for aya::programs::fentry::FEntryLinkId
  3171. pub fn aya::programs::fentry::FEntryLinkId::from(t: T) -> T
  3172. pub mod aya::programs::fexit
  3173. pub struct aya::programs::fexit::FExit
  3174. impl aya::programs::fexit::FExit
  3175. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  3176. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3177. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3178. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  3179. impl aya::programs::fexit::FExit
  3180. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3181. impl aya::programs::fexit::FExit
  3182. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3183. impl aya::programs::fexit::FExit
  3184. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3185. impl aya::programs::fexit::FExit
  3186. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3187. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3188. impl aya::programs::fexit::FExit
  3189. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3190. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  3191. pub fn aya::programs::fexit::FExit::drop(&mut self)
  3192. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  3193. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3194. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  3195. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  3196. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  3197. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  3198. impl core::fmt::Debug for aya::programs::fexit::FExit
  3199. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3200. impl core::marker::Send for aya::programs::fexit::FExit
  3201. impl core::marker::Sync for aya::programs::fexit::FExit
  3202. impl core::marker::Unpin for aya::programs::fexit::FExit
  3203. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  3204. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  3205. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  3206. pub fn aya::programs::fexit::FExit::into(self) -> U
  3207. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  3208. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  3209. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3210. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  3211. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  3212. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3213. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + core::marker::Sized
  3214. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  3215. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: core::marker::Sized
  3216. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  3217. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: core::marker::Sized
  3218. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  3219. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  3220. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  3221. pub struct aya::programs::fexit::FExitLink(_)
  3222. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  3223. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  3224. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3225. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  3226. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  3227. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  3228. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  3229. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  3230. impl core::ops::drop::Drop for aya::programs::fexit::FExitLink
  3231. pub fn aya::programs::fexit::FExitLink::drop(&mut self)
  3232. impl core::fmt::Debug for aya::programs::fexit::FExitLink
  3233. pub fn aya::programs::fexit::FExitLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3234. impl core::marker::Send for aya::programs::fexit::FExitLink
  3235. impl core::marker::Sync for aya::programs::fexit::FExitLink
  3236. impl core::marker::Unpin for aya::programs::fexit::FExitLink
  3237. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLink
  3238. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLink
  3239. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLink where U: core::convert::From<T>
  3240. pub fn aya::programs::fexit::FExitLink::into(self) -> U
  3241. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLink where U: core::convert::Into<T>
  3242. pub type aya::programs::fexit::FExitLink::Error = core::convert::Infallible
  3243. pub fn aya::programs::fexit::FExitLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3244. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLink where U: core::convert::TryFrom<T>
  3245. pub type aya::programs::fexit::FExitLink::Error = <U as core::convert::TryFrom<T>>::Error
  3246. pub fn aya::programs::fexit::FExitLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3247. impl<T> core::any::Any for aya::programs::fexit::FExitLink where T: 'static + core::marker::Sized
  3248. pub fn aya::programs::fexit::FExitLink::type_id(&self) -> core::any::TypeId
  3249. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLink where T: core::marker::Sized
  3250. pub fn aya::programs::fexit::FExitLink::borrow(&self) -> &T
  3251. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLink where T: core::marker::Sized
  3252. pub fn aya::programs::fexit::FExitLink::borrow_mut(&mut self) -> &mut T
  3253. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLink
  3254. pub fn aya::programs::fexit::FExitLink::from(t: T) -> T
  3255. pub struct aya::programs::fexit::FExitLinkId(_)
  3256. impl core::cmp::Eq for aya::programs::fexit::FExitLinkId
  3257. impl core::cmp::PartialEq<aya::programs::fexit::FExitLinkId> for aya::programs::fexit::FExitLinkId
  3258. pub fn aya::programs::fexit::FExitLinkId::eq(&self, other: &aya::programs::fexit::FExitLinkId) -> bool
  3259. impl core::fmt::Debug for aya::programs::fexit::FExitLinkId
  3260. pub fn aya::programs::fexit::FExitLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3261. impl core::hash::Hash for aya::programs::fexit::FExitLinkId
  3262. pub fn aya::programs::fexit::FExitLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3263. impl core::marker::StructuralEq for aya::programs::fexit::FExitLinkId
  3264. impl core::marker::StructuralPartialEq for aya::programs::fexit::FExitLinkId
  3265. impl core::marker::Send for aya::programs::fexit::FExitLinkId
  3266. impl core::marker::Sync for aya::programs::fexit::FExitLinkId
  3267. impl core::marker::Unpin for aya::programs::fexit::FExitLinkId
  3268. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExitLinkId
  3269. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExitLinkId
  3270. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExitLinkId where U: core::convert::From<T>
  3271. pub fn aya::programs::fexit::FExitLinkId::into(self) -> U
  3272. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExitLinkId where U: core::convert::Into<T>
  3273. pub type aya::programs::fexit::FExitLinkId::Error = core::convert::Infallible
  3274. pub fn aya::programs::fexit::FExitLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3275. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExitLinkId where U: core::convert::TryFrom<T>
  3276. pub type aya::programs::fexit::FExitLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3277. pub fn aya::programs::fexit::FExitLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3278. impl<T> core::any::Any for aya::programs::fexit::FExitLinkId where T: 'static + core::marker::Sized
  3279. pub fn aya::programs::fexit::FExitLinkId::type_id(&self) -> core::any::TypeId
  3280. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExitLinkId where T: core::marker::Sized
  3281. pub fn aya::programs::fexit::FExitLinkId::borrow(&self) -> &T
  3282. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExitLinkId where T: core::marker::Sized
  3283. pub fn aya::programs::fexit::FExitLinkId::borrow_mut(&mut self) -> &mut T
  3284. impl<T> core::convert::From<T> for aya::programs::fexit::FExitLinkId
  3285. pub fn aya::programs::fexit::FExitLinkId::from(t: T) -> T
  3286. pub mod aya::programs::kprobe
  3287. pub enum aya::programs::kprobe::KProbeError
  3288. pub aya::programs::kprobe::KProbeError::FileError
  3289. pub aya::programs::kprobe::KProbeError::FileError::filename: std::path::PathBuf
  3290. pub aya::programs::kprobe::KProbeError::FileError::io_error: std::io::error::Error
  3291. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  3292. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  3293. impl core::error::Error for aya::programs::kprobe::KProbeError
  3294. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  3295. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  3296. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3297. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  3298. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3299. impl core::marker::Send for aya::programs::kprobe::KProbeError
  3300. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  3301. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  3302. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  3303. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  3304. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  3305. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  3306. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  3307. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  3308. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3309. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  3310. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  3311. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3312. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + core::marker::Sized
  3313. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  3314. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + core::marker::Sized
  3315. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  3316. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: core::marker::Sized
  3317. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  3318. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: core::marker::Sized
  3319. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  3320. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  3321. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  3322. pub struct aya::programs::kprobe::KProbe
  3323. impl aya::programs::kprobe::KProbe
  3324. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  3325. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3326. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  3327. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  3328. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3329. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  3330. impl aya::programs::kprobe::KProbe
  3331. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3332. impl aya::programs::kprobe::KProbe
  3333. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3334. impl aya::programs::kprobe::KProbe
  3335. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3336. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3337. impl aya::programs::kprobe::KProbe
  3338. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3339. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  3340. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  3341. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  3342. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  3343. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  3344. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  3345. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  3346. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  3347. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  3348. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3349. impl core::marker::Send for aya::programs::kprobe::KProbe
  3350. impl core::marker::Sync for aya::programs::kprobe::KProbe
  3351. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  3352. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  3353. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  3354. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  3355. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  3356. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  3357. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  3358. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3359. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  3360. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  3361. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3362. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + core::marker::Sized
  3363. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  3364. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: core::marker::Sized
  3365. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  3366. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: core::marker::Sized
  3367. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  3368. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  3369. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  3370. pub struct aya::programs::kprobe::KProbeLink(_)
  3371. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  3372. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  3373. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3374. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  3375. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  3376. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3377. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  3378. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  3379. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  3380. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3381. impl core::ops::drop::Drop for aya::programs::kprobe::KProbeLink
  3382. pub fn aya::programs::kprobe::KProbeLink::drop(&mut self)
  3383. impl core::fmt::Debug for aya::programs::kprobe::KProbeLink
  3384. pub fn aya::programs::kprobe::KProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3385. impl core::marker::Send for aya::programs::kprobe::KProbeLink
  3386. impl core::marker::Sync for aya::programs::kprobe::KProbeLink
  3387. impl core::marker::Unpin for aya::programs::kprobe::KProbeLink
  3388. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLink
  3389. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLink
  3390. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLink where U: core::convert::From<T>
  3391. pub fn aya::programs::kprobe::KProbeLink::into(self) -> U
  3392. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLink where U: core::convert::Into<T>
  3393. pub type aya::programs::kprobe::KProbeLink::Error = core::convert::Infallible
  3394. pub fn aya::programs::kprobe::KProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3395. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLink where U: core::convert::TryFrom<T>
  3396. pub type aya::programs::kprobe::KProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  3397. pub fn aya::programs::kprobe::KProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3398. impl<T> core::any::Any for aya::programs::kprobe::KProbeLink where T: 'static + core::marker::Sized
  3399. pub fn aya::programs::kprobe::KProbeLink::type_id(&self) -> core::any::TypeId
  3400. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLink where T: core::marker::Sized
  3401. pub fn aya::programs::kprobe::KProbeLink::borrow(&self) -> &T
  3402. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLink where T: core::marker::Sized
  3403. pub fn aya::programs::kprobe::KProbeLink::borrow_mut(&mut self) -> &mut T
  3404. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLink
  3405. pub fn aya::programs::kprobe::KProbeLink::from(t: T) -> T
  3406. pub struct aya::programs::kprobe::KProbeLinkId(_)
  3407. impl core::cmp::Eq for aya::programs::kprobe::KProbeLinkId
  3408. impl core::cmp::PartialEq<aya::programs::kprobe::KProbeLinkId> for aya::programs::kprobe::KProbeLinkId
  3409. pub fn aya::programs::kprobe::KProbeLinkId::eq(&self, other: &aya::programs::kprobe::KProbeLinkId) -> bool
  3410. impl core::fmt::Debug for aya::programs::kprobe::KProbeLinkId
  3411. pub fn aya::programs::kprobe::KProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3412. impl core::hash::Hash for aya::programs::kprobe::KProbeLinkId
  3413. pub fn aya::programs::kprobe::KProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3414. impl core::marker::StructuralEq for aya::programs::kprobe::KProbeLinkId
  3415. impl core::marker::StructuralPartialEq for aya::programs::kprobe::KProbeLinkId
  3416. impl core::marker::Send for aya::programs::kprobe::KProbeLinkId
  3417. impl core::marker::Sync for aya::programs::kprobe::KProbeLinkId
  3418. impl core::marker::Unpin for aya::programs::kprobe::KProbeLinkId
  3419. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeLinkId
  3420. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeLinkId
  3421. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::From<T>
  3422. pub fn aya::programs::kprobe::KProbeLinkId::into(self) -> U
  3423. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::Into<T>
  3424. pub type aya::programs::kprobe::KProbeLinkId::Error = core::convert::Infallible
  3425. pub fn aya::programs::kprobe::KProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3426. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeLinkId where U: core::convert::TryFrom<T>
  3427. pub type aya::programs::kprobe::KProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3428. pub fn aya::programs::kprobe::KProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3429. impl<T> core::any::Any for aya::programs::kprobe::KProbeLinkId where T: 'static + core::marker::Sized
  3430. pub fn aya::programs::kprobe::KProbeLinkId::type_id(&self) -> core::any::TypeId
  3431. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeLinkId where T: core::marker::Sized
  3432. pub fn aya::programs::kprobe::KProbeLinkId::borrow(&self) -> &T
  3433. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeLinkId where T: core::marker::Sized
  3434. pub fn aya::programs::kprobe::KProbeLinkId::borrow_mut(&mut self) -> &mut T
  3435. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeLinkId
  3436. pub fn aya::programs::kprobe::KProbeLinkId::from(t: T) -> T
  3437. pub mod aya::programs::links
  3438. pub enum aya::programs::links::LinkError
  3439. pub aya::programs::links::LinkError::InvalidLink
  3440. pub aya::programs::links::LinkError::SyscallError(crate::sys::SyscallError)
  3441. impl core::error::Error for aya::programs::links::LinkError
  3442. pub fn aya::programs::links::LinkError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  3443. impl core::fmt::Display for aya::programs::links::LinkError
  3444. pub fn aya::programs::links::LinkError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3445. impl core::fmt::Debug for aya::programs::links::LinkError
  3446. pub fn aya::programs::links::LinkError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3447. impl core::marker::Send for aya::programs::links::LinkError
  3448. impl core::marker::Sync for aya::programs::links::LinkError
  3449. impl core::marker::Unpin for aya::programs::links::LinkError
  3450. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::LinkError
  3451. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::links::LinkError
  3452. impl<T, U> core::convert::Into<U> for aya::programs::links::LinkError where U: core::convert::From<T>
  3453. pub fn aya::programs::links::LinkError::into(self) -> U
  3454. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::LinkError where U: core::convert::Into<T>
  3455. pub type aya::programs::links::LinkError::Error = core::convert::Infallible
  3456. pub fn aya::programs::links::LinkError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3457. impl<T, U> core::convert::TryInto<U> for aya::programs::links::LinkError where U: core::convert::TryFrom<T>
  3458. pub type aya::programs::links::LinkError::Error = <U as core::convert::TryFrom<T>>::Error
  3459. pub fn aya::programs::links::LinkError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3460. impl<T> alloc::string::ToString for aya::programs::links::LinkError where T: core::fmt::Display + core::marker::Sized
  3461. pub fn aya::programs::links::LinkError::to_string(&self) -> alloc::string::String
  3462. impl<T> core::any::Any for aya::programs::links::LinkError where T: 'static + core::marker::Sized
  3463. pub fn aya::programs::links::LinkError::type_id(&self) -> core::any::TypeId
  3464. impl<T> core::borrow::Borrow<T> for aya::programs::links::LinkError where T: core::marker::Sized
  3465. pub fn aya::programs::links::LinkError::borrow(&self) -> &T
  3466. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::LinkError where T: core::marker::Sized
  3467. pub fn aya::programs::links::LinkError::borrow_mut(&mut self) -> &mut T
  3468. impl<T> core::convert::From<T> for aya::programs::links::LinkError
  3469. pub fn aya::programs::links::LinkError::from(t: T) -> T
  3470. pub struct aya::programs::links::FdLink
  3471. impl aya::programs::links::FdLink
  3472. pub fn aya::programs::links::FdLink::pin<P: core::convert::AsRef<std::path::Path>>(self, path: P) -> core::result::Result<aya::programs::links::PinnedLink, aya::pin::PinError>
  3473. impl aya::programs::links::Link for aya::programs::links::FdLink
  3474. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  3475. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3476. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  3477. impl core::convert::From<aya::programs::extension::ExtensionLink> for aya::programs::links::FdLink
  3478. pub fn aya::programs::links::FdLink::from(w: aya::programs::extension::ExtensionLink) -> aya::programs::links::FdLink
  3479. impl core::convert::From<aya::programs::fentry::FEntryLink> for aya::programs::links::FdLink
  3480. pub fn aya::programs::links::FdLink::from(w: aya::programs::fentry::FEntryLink) -> aya::programs::links::FdLink
  3481. impl core::convert::From<aya::programs::fexit::FExitLink> for aya::programs::links::FdLink
  3482. pub fn aya::programs::links::FdLink::from(w: aya::programs::fexit::FExitLink) -> aya::programs::links::FdLink
  3483. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::extension::ExtensionLink
  3484. pub fn aya::programs::extension::ExtensionLink::from(b: aya::programs::links::FdLink) -> aya::programs::extension::ExtensionLink
  3485. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fentry::FEntryLink
  3486. pub fn aya::programs::fentry::FEntryLink::from(b: aya::programs::links::FdLink) -> aya::programs::fentry::FEntryLink
  3487. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::fexit::FExitLink
  3488. pub fn aya::programs::fexit::FExitLink::from(b: aya::programs::links::FdLink) -> aya::programs::fexit::FExitLink
  3489. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  3490. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  3491. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  3492. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  3493. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  3494. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  3495. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  3496. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  3497. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  3498. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  3499. impl core::convert::TryFrom<aya::programs::kprobe::KProbeLink> for aya::programs::links::FdLink
  3500. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3501. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::kprobe::KProbeLink) -> core::result::Result<Self, Self::Error>
  3502. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::kprobe::KProbeLink
  3503. pub type aya::programs::kprobe::KProbeLink::Error = aya::programs::links::LinkError
  3504. pub fn aya::programs::kprobe::KProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3505. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  3506. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  3507. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3508. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  3509. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  3510. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3511. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  3512. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  3513. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3514. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  3515. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  3516. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  3517. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  3518. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3519. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  3520. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  3521. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3522. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  3523. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  3524. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3525. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  3526. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  3527. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  3528. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  3529. impl core::fmt::Debug for aya::programs::links::FdLink
  3530. pub fn aya::programs::links::FdLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3531. impl core::marker::Send for aya::programs::links::FdLink
  3532. impl core::marker::Sync for aya::programs::links::FdLink
  3533. impl core::marker::Unpin for aya::programs::links::FdLink
  3534. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLink
  3535. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLink
  3536. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLink where U: core::convert::From<T>
  3537. pub fn aya::programs::links::FdLink::into(self) -> U
  3538. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLink where U: core::convert::Into<T>
  3539. pub type aya::programs::links::FdLink::Error = core::convert::Infallible
  3540. pub fn aya::programs::links::FdLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3541. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLink where U: core::convert::TryFrom<T>
  3542. pub type aya::programs::links::FdLink::Error = <U as core::convert::TryFrom<T>>::Error
  3543. pub fn aya::programs::links::FdLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3544. impl<T> core::any::Any for aya::programs::links::FdLink where T: 'static + core::marker::Sized
  3545. pub fn aya::programs::links::FdLink::type_id(&self) -> core::any::TypeId
  3546. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLink where T: core::marker::Sized
  3547. pub fn aya::programs::links::FdLink::borrow(&self) -> &T
  3548. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLink where T: core::marker::Sized
  3549. pub fn aya::programs::links::FdLink::borrow_mut(&mut self) -> &mut T
  3550. impl<T> core::convert::From<T> for aya::programs::links::FdLink
  3551. pub fn aya::programs::links::FdLink::from(t: T) -> T
  3552. pub struct aya::programs::links::FdLinkId(_)
  3553. impl core::cmp::Eq for aya::programs::links::FdLinkId
  3554. impl core::cmp::PartialEq<aya::programs::links::FdLinkId> for aya::programs::links::FdLinkId
  3555. pub fn aya::programs::links::FdLinkId::eq(&self, other: &aya::programs::links::FdLinkId) -> bool
  3556. impl core::fmt::Debug for aya::programs::links::FdLinkId
  3557. pub fn aya::programs::links::FdLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3558. impl core::hash::Hash for aya::programs::links::FdLinkId
  3559. pub fn aya::programs::links::FdLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3560. impl core::marker::StructuralEq for aya::programs::links::FdLinkId
  3561. impl core::marker::StructuralPartialEq for aya::programs::links::FdLinkId
  3562. impl core::marker::Send for aya::programs::links::FdLinkId
  3563. impl core::marker::Sync for aya::programs::links::FdLinkId
  3564. impl core::marker::Unpin for aya::programs::links::FdLinkId
  3565. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::FdLinkId
  3566. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::FdLinkId
  3567. impl<T, U> core::convert::Into<U> for aya::programs::links::FdLinkId where U: core::convert::From<T>
  3568. pub fn aya::programs::links::FdLinkId::into(self) -> U
  3569. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::FdLinkId where U: core::convert::Into<T>
  3570. pub type aya::programs::links::FdLinkId::Error = core::convert::Infallible
  3571. pub fn aya::programs::links::FdLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3572. impl<T, U> core::convert::TryInto<U> for aya::programs::links::FdLinkId where U: core::convert::TryFrom<T>
  3573. pub type aya::programs::links::FdLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3574. pub fn aya::programs::links::FdLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3575. impl<T> core::any::Any for aya::programs::links::FdLinkId where T: 'static + core::marker::Sized
  3576. pub fn aya::programs::links::FdLinkId::type_id(&self) -> core::any::TypeId
  3577. impl<T> core::borrow::Borrow<T> for aya::programs::links::FdLinkId where T: core::marker::Sized
  3578. pub fn aya::programs::links::FdLinkId::borrow(&self) -> &T
  3579. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::FdLinkId where T: core::marker::Sized
  3580. pub fn aya::programs::links::FdLinkId::borrow_mut(&mut self) -> &mut T
  3581. impl<T> core::convert::From<T> for aya::programs::links::FdLinkId
  3582. pub fn aya::programs::links::FdLinkId::from(t: T) -> T
  3583. pub struct aya::programs::links::PinnedLink
  3584. impl aya::programs::links::PinnedLink
  3585. pub fn aya::programs::links::PinnedLink::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::links::LinkError>
  3586. pub fn aya::programs::links::PinnedLink::unpin(self) -> core::result::Result<aya::programs::links::FdLink, std::io::error::Error>
  3587. impl core::convert::From<aya::programs::links::PinnedLink> for aya::programs::links::FdLink
  3588. pub fn aya::programs::links::FdLink::from(p: aya::programs::links::PinnedLink) -> Self
  3589. impl core::fmt::Debug for aya::programs::links::PinnedLink
  3590. pub fn aya::programs::links::PinnedLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3591. impl core::marker::Send for aya::programs::links::PinnedLink
  3592. impl core::marker::Sync for aya::programs::links::PinnedLink
  3593. impl core::marker::Unpin for aya::programs::links::PinnedLink
  3594. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::PinnedLink
  3595. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::PinnedLink
  3596. impl<T, U> core::convert::Into<U> for aya::programs::links::PinnedLink where U: core::convert::From<T>
  3597. pub fn aya::programs::links::PinnedLink::into(self) -> U
  3598. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::PinnedLink where U: core::convert::Into<T>
  3599. pub type aya::programs::links::PinnedLink::Error = core::convert::Infallible
  3600. pub fn aya::programs::links::PinnedLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3601. impl<T, U> core::convert::TryInto<U> for aya::programs::links::PinnedLink where U: core::convert::TryFrom<T>
  3602. pub type aya::programs::links::PinnedLink::Error = <U as core::convert::TryFrom<T>>::Error
  3603. pub fn aya::programs::links::PinnedLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3604. impl<T> core::any::Any for aya::programs::links::PinnedLink where T: 'static + core::marker::Sized
  3605. pub fn aya::programs::links::PinnedLink::type_id(&self) -> core::any::TypeId
  3606. impl<T> core::borrow::Borrow<T> for aya::programs::links::PinnedLink where T: core::marker::Sized
  3607. pub fn aya::programs::links::PinnedLink::borrow(&self) -> &T
  3608. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::PinnedLink where T: core::marker::Sized
  3609. pub fn aya::programs::links::PinnedLink::borrow_mut(&mut self) -> &mut T
  3610. impl<T> core::convert::From<T> for aya::programs::links::PinnedLink
  3611. pub fn aya::programs::links::PinnedLink::from(t: T) -> T
  3612. pub struct aya::programs::links::ProgAttachLink
  3613. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  3614. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  3615. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3616. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  3617. impl core::fmt::Debug for aya::programs::links::ProgAttachLink
  3618. pub fn aya::programs::links::ProgAttachLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3619. impl core::marker::Send for aya::programs::links::ProgAttachLink
  3620. impl core::marker::Sync for aya::programs::links::ProgAttachLink
  3621. impl core::marker::Unpin for aya::programs::links::ProgAttachLink
  3622. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLink
  3623. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLink
  3624. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLink where U: core::convert::From<T>
  3625. pub fn aya::programs::links::ProgAttachLink::into(self) -> U
  3626. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLink where U: core::convert::Into<T>
  3627. pub type aya::programs::links::ProgAttachLink::Error = core::convert::Infallible
  3628. pub fn aya::programs::links::ProgAttachLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3629. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLink where U: core::convert::TryFrom<T>
  3630. pub type aya::programs::links::ProgAttachLink::Error = <U as core::convert::TryFrom<T>>::Error
  3631. pub fn aya::programs::links::ProgAttachLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3632. impl<T> core::any::Any for aya::programs::links::ProgAttachLink where T: 'static + core::marker::Sized
  3633. pub fn aya::programs::links::ProgAttachLink::type_id(&self) -> core::any::TypeId
  3634. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLink where T: core::marker::Sized
  3635. pub fn aya::programs::links::ProgAttachLink::borrow(&self) -> &T
  3636. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLink where T: core::marker::Sized
  3637. pub fn aya::programs::links::ProgAttachLink::borrow_mut(&mut self) -> &mut T
  3638. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLink
  3639. pub fn aya::programs::links::ProgAttachLink::from(t: T) -> T
  3640. pub struct aya::programs::links::ProgAttachLinkId(_, _, _)
  3641. impl core::cmp::Eq for aya::programs::links::ProgAttachLinkId
  3642. impl core::cmp::PartialEq<aya::programs::links::ProgAttachLinkId> for aya::programs::links::ProgAttachLinkId
  3643. pub fn aya::programs::links::ProgAttachLinkId::eq(&self, other: &aya::programs::links::ProgAttachLinkId) -> bool
  3644. impl core::fmt::Debug for aya::programs::links::ProgAttachLinkId
  3645. pub fn aya::programs::links::ProgAttachLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3646. impl core::hash::Hash for aya::programs::links::ProgAttachLinkId
  3647. pub fn aya::programs::links::ProgAttachLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3648. impl core::marker::StructuralEq for aya::programs::links::ProgAttachLinkId
  3649. impl core::marker::StructuralPartialEq for aya::programs::links::ProgAttachLinkId
  3650. impl core::marker::Send for aya::programs::links::ProgAttachLinkId
  3651. impl core::marker::Sync for aya::programs::links::ProgAttachLinkId
  3652. impl core::marker::Unpin for aya::programs::links::ProgAttachLinkId
  3653. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::links::ProgAttachLinkId
  3654. impl core::panic::unwind_safe::UnwindSafe for aya::programs::links::ProgAttachLinkId
  3655. impl<T, U> core::convert::Into<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::From<T>
  3656. pub fn aya::programs::links::ProgAttachLinkId::into(self) -> U
  3657. impl<T, U> core::convert::TryFrom<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::Into<T>
  3658. pub type aya::programs::links::ProgAttachLinkId::Error = core::convert::Infallible
  3659. pub fn aya::programs::links::ProgAttachLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3660. impl<T, U> core::convert::TryInto<U> for aya::programs::links::ProgAttachLinkId where U: core::convert::TryFrom<T>
  3661. pub type aya::programs::links::ProgAttachLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3662. pub fn aya::programs::links::ProgAttachLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3663. impl<T> core::any::Any for aya::programs::links::ProgAttachLinkId where T: 'static + core::marker::Sized
  3664. pub fn aya::programs::links::ProgAttachLinkId::type_id(&self) -> core::any::TypeId
  3665. impl<T> core::borrow::Borrow<T> for aya::programs::links::ProgAttachLinkId where T: core::marker::Sized
  3666. pub fn aya::programs::links::ProgAttachLinkId::borrow(&self) -> &T
  3667. impl<T> core::borrow::BorrowMut<T> for aya::programs::links::ProgAttachLinkId where T: core::marker::Sized
  3668. pub fn aya::programs::links::ProgAttachLinkId::borrow_mut(&mut self) -> &mut T
  3669. impl<T> core::convert::From<T> for aya::programs::links::ProgAttachLinkId
  3670. pub fn aya::programs::links::ProgAttachLinkId::from(t: T) -> T
  3671. pub trait aya::programs::links::Link: core::fmt::Debug + 'static
  3672. pub type aya::programs::links::Link::Id: core::fmt::Debug + core::hash::Hash + core::cmp::Eq + core::cmp::PartialEq
  3673. pub fn aya::programs::links::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3674. pub fn aya::programs::links::Link::id(&self) -> Self::Id
  3675. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  3676. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  3677. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3678. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  3679. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  3680. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  3681. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3682. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  3683. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  3684. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  3685. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3686. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  3687. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  3688. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  3689. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3690. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  3691. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  3692. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  3693. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3694. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  3695. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  3696. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  3697. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3698. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  3699. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  3700. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  3701. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3702. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  3703. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  3704. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  3705. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3706. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  3707. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  3708. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  3709. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3710. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  3711. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  3712. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  3713. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3714. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  3715. impl aya::programs::links::Link for aya::programs::links::FdLink
  3716. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  3717. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3718. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  3719. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  3720. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  3721. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3722. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  3723. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  3724. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  3725. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3726. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  3727. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  3728. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  3729. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3730. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  3731. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  3732. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  3733. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3734. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  3735. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  3736. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  3737. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3738. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  3739. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  3740. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  3741. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3742. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  3743. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  3744. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  3745. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3746. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  3747. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  3748. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  3749. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3750. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  3751. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  3752. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  3753. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3754. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  3755. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  3756. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  3757. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3758. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  3759. pub mod aya::programs::lirc_mode2
  3760. pub struct aya::programs::lirc_mode2::LircLink
  3761. impl aya::programs::lirc_mode2::LircLink
  3762. pub fn aya::programs::lirc_mode2::LircLink::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3763. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  3764. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  3765. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3766. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  3767. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLink
  3768. pub fn aya::programs::lirc_mode2::LircLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3769. impl core::marker::Send for aya::programs::lirc_mode2::LircLink
  3770. impl core::marker::Sync for aya::programs::lirc_mode2::LircLink
  3771. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLink
  3772. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLink
  3773. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLink
  3774. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::From<T>
  3775. pub fn aya::programs::lirc_mode2::LircLink::into(self) -> U
  3776. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::Into<T>
  3777. pub type aya::programs::lirc_mode2::LircLink::Error = core::convert::Infallible
  3778. pub fn aya::programs::lirc_mode2::LircLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3779. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLink where U: core::convert::TryFrom<T>
  3780. pub type aya::programs::lirc_mode2::LircLink::Error = <U as core::convert::TryFrom<T>>::Error
  3781. pub fn aya::programs::lirc_mode2::LircLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3782. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLink where T: 'static + core::marker::Sized
  3783. pub fn aya::programs::lirc_mode2::LircLink::type_id(&self) -> core::any::TypeId
  3784. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLink where T: core::marker::Sized
  3785. pub fn aya::programs::lirc_mode2::LircLink::borrow(&self) -> &T
  3786. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLink where T: core::marker::Sized
  3787. pub fn aya::programs::lirc_mode2::LircLink::borrow_mut(&mut self) -> &mut T
  3788. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLink
  3789. pub fn aya::programs::lirc_mode2::LircLink::from(t: T) -> T
  3790. pub struct aya::programs::lirc_mode2::LircLinkId(_, _)
  3791. impl core::cmp::Eq for aya::programs::lirc_mode2::LircLinkId
  3792. impl core::cmp::PartialEq<aya::programs::lirc_mode2::LircLinkId> for aya::programs::lirc_mode2::LircLinkId
  3793. pub fn aya::programs::lirc_mode2::LircLinkId::eq(&self, other: &aya::programs::lirc_mode2::LircLinkId) -> bool
  3794. impl core::fmt::Debug for aya::programs::lirc_mode2::LircLinkId
  3795. pub fn aya::programs::lirc_mode2::LircLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3796. impl core::hash::Hash for aya::programs::lirc_mode2::LircLinkId
  3797. pub fn aya::programs::lirc_mode2::LircLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3798. impl core::marker::StructuralEq for aya::programs::lirc_mode2::LircLinkId
  3799. impl core::marker::StructuralPartialEq for aya::programs::lirc_mode2::LircLinkId
  3800. impl core::marker::Send for aya::programs::lirc_mode2::LircLinkId
  3801. impl core::marker::Sync for aya::programs::lirc_mode2::LircLinkId
  3802. impl core::marker::Unpin for aya::programs::lirc_mode2::LircLinkId
  3803. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircLinkId
  3804. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircLinkId
  3805. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::From<T>
  3806. pub fn aya::programs::lirc_mode2::LircLinkId::into(self) -> U
  3807. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::Into<T>
  3808. pub type aya::programs::lirc_mode2::LircLinkId::Error = core::convert::Infallible
  3809. pub fn aya::programs::lirc_mode2::LircLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3810. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircLinkId where U: core::convert::TryFrom<T>
  3811. pub type aya::programs::lirc_mode2::LircLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3812. pub fn aya::programs::lirc_mode2::LircLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3813. impl<T> core::any::Any for aya::programs::lirc_mode2::LircLinkId where T: 'static + core::marker::Sized
  3814. pub fn aya::programs::lirc_mode2::LircLinkId::type_id(&self) -> core::any::TypeId
  3815. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircLinkId where T: core::marker::Sized
  3816. pub fn aya::programs::lirc_mode2::LircLinkId::borrow(&self) -> &T
  3817. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircLinkId where T: core::marker::Sized
  3818. pub fn aya::programs::lirc_mode2::LircLinkId::borrow_mut(&mut self) -> &mut T
  3819. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircLinkId
  3820. pub fn aya::programs::lirc_mode2::LircLinkId::from(t: T) -> T
  3821. pub struct aya::programs::lirc_mode2::LircMode2
  3822. impl aya::programs::lirc_mode2::LircMode2
  3823. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  3824. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3825. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3826. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  3827. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  3828. impl aya::programs::lirc_mode2::LircMode2
  3829. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3830. impl aya::programs::lirc_mode2::LircMode2
  3831. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3832. impl aya::programs::lirc_mode2::LircMode2
  3833. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3834. impl aya::programs::lirc_mode2::LircMode2
  3835. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3836. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3837. impl aya::programs::lirc_mode2::LircMode2
  3838. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3839. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  3840. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  3841. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  3842. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  3843. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  3844. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  3845. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  3846. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  3847. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  3848. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3849. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  3850. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  3851. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  3852. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  3853. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  3854. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  3855. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  3856. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  3857. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  3858. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3859. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  3860. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  3861. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3862. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + core::marker::Sized
  3863. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  3864. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized
  3865. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  3866. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized
  3867. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  3868. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  3869. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  3870. pub mod aya::programs::lsm
  3871. pub struct aya::programs::lsm::Lsm
  3872. impl aya::programs::lsm::Lsm
  3873. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  3874. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  3875. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  3876. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  3877. impl aya::programs::lsm::Lsm
  3878. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  3879. impl aya::programs::lsm::Lsm
  3880. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  3881. impl aya::programs::lsm::Lsm
  3882. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  3883. impl aya::programs::lsm::Lsm
  3884. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  3885. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  3886. impl aya::programs::lsm::Lsm
  3887. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  3888. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  3889. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  3890. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  3891. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  3892. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  3893. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  3894. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  3895. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  3896. impl core::fmt::Debug for aya::programs::lsm::Lsm
  3897. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3898. impl core::marker::Send for aya::programs::lsm::Lsm
  3899. impl core::marker::Sync for aya::programs::lsm::Lsm
  3900. impl core::marker::Unpin for aya::programs::lsm::Lsm
  3901. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  3902. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  3903. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  3904. pub fn aya::programs::lsm::Lsm::into(self) -> U
  3905. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  3906. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  3907. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3908. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  3909. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  3910. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3911. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + core::marker::Sized
  3912. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  3913. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: core::marker::Sized
  3914. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  3915. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: core::marker::Sized
  3916. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  3917. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  3918. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  3919. pub struct aya::programs::lsm::LsmLink(_)
  3920. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  3921. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  3922. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3923. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  3924. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::lsm::LsmLink
  3925. pub fn aya::programs::lsm::LsmLink::from(b: aya::programs::links::FdLink) -> aya::programs::lsm::LsmLink
  3926. impl core::convert::From<aya::programs::lsm::LsmLink> for aya::programs::links::FdLink
  3927. pub fn aya::programs::links::FdLink::from(w: aya::programs::lsm::LsmLink) -> aya::programs::links::FdLink
  3928. impl core::ops::drop::Drop for aya::programs::lsm::LsmLink
  3929. pub fn aya::programs::lsm::LsmLink::drop(&mut self)
  3930. impl core::fmt::Debug for aya::programs::lsm::LsmLink
  3931. pub fn aya::programs::lsm::LsmLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3932. impl core::marker::Send for aya::programs::lsm::LsmLink
  3933. impl core::marker::Sync for aya::programs::lsm::LsmLink
  3934. impl core::marker::Unpin for aya::programs::lsm::LsmLink
  3935. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLink
  3936. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLink
  3937. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLink where U: core::convert::From<T>
  3938. pub fn aya::programs::lsm::LsmLink::into(self) -> U
  3939. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLink where U: core::convert::Into<T>
  3940. pub type aya::programs::lsm::LsmLink::Error = core::convert::Infallible
  3941. pub fn aya::programs::lsm::LsmLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3942. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLink where U: core::convert::TryFrom<T>
  3943. pub type aya::programs::lsm::LsmLink::Error = <U as core::convert::TryFrom<T>>::Error
  3944. pub fn aya::programs::lsm::LsmLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3945. impl<T> core::any::Any for aya::programs::lsm::LsmLink where T: 'static + core::marker::Sized
  3946. pub fn aya::programs::lsm::LsmLink::type_id(&self) -> core::any::TypeId
  3947. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLink where T: core::marker::Sized
  3948. pub fn aya::programs::lsm::LsmLink::borrow(&self) -> &T
  3949. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLink where T: core::marker::Sized
  3950. pub fn aya::programs::lsm::LsmLink::borrow_mut(&mut self) -> &mut T
  3951. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLink
  3952. pub fn aya::programs::lsm::LsmLink::from(t: T) -> T
  3953. pub struct aya::programs::lsm::LsmLinkId(_)
  3954. impl core::cmp::Eq for aya::programs::lsm::LsmLinkId
  3955. impl core::cmp::PartialEq<aya::programs::lsm::LsmLinkId> for aya::programs::lsm::LsmLinkId
  3956. pub fn aya::programs::lsm::LsmLinkId::eq(&self, other: &aya::programs::lsm::LsmLinkId) -> bool
  3957. impl core::fmt::Debug for aya::programs::lsm::LsmLinkId
  3958. pub fn aya::programs::lsm::LsmLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3959. impl core::hash::Hash for aya::programs::lsm::LsmLinkId
  3960. pub fn aya::programs::lsm::LsmLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  3961. impl core::marker::StructuralEq for aya::programs::lsm::LsmLinkId
  3962. impl core::marker::StructuralPartialEq for aya::programs::lsm::LsmLinkId
  3963. impl core::marker::Send for aya::programs::lsm::LsmLinkId
  3964. impl core::marker::Sync for aya::programs::lsm::LsmLinkId
  3965. impl core::marker::Unpin for aya::programs::lsm::LsmLinkId
  3966. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::LsmLinkId
  3967. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::LsmLinkId
  3968. impl<T, U> core::convert::Into<U> for aya::programs::lsm::LsmLinkId where U: core::convert::From<T>
  3969. pub fn aya::programs::lsm::LsmLinkId::into(self) -> U
  3970. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::LsmLinkId where U: core::convert::Into<T>
  3971. pub type aya::programs::lsm::LsmLinkId::Error = core::convert::Infallible
  3972. pub fn aya::programs::lsm::LsmLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  3973. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::LsmLinkId where U: core::convert::TryFrom<T>
  3974. pub type aya::programs::lsm::LsmLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  3975. pub fn aya::programs::lsm::LsmLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  3976. impl<T> core::any::Any for aya::programs::lsm::LsmLinkId where T: 'static + core::marker::Sized
  3977. pub fn aya::programs::lsm::LsmLinkId::type_id(&self) -> core::any::TypeId
  3978. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::LsmLinkId where T: core::marker::Sized
  3979. pub fn aya::programs::lsm::LsmLinkId::borrow(&self) -> &T
  3980. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::LsmLinkId where T: core::marker::Sized
  3981. pub fn aya::programs::lsm::LsmLinkId::borrow_mut(&mut self) -> &mut T
  3982. impl<T> core::convert::From<T> for aya::programs::lsm::LsmLinkId
  3983. pub fn aya::programs::lsm::LsmLinkId::from(t: T) -> T
  3984. pub mod aya::programs::perf_attach
  3985. pub struct aya::programs::perf_attach::PerfLink
  3986. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  3987. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  3988. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  3989. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  3990. impl core::fmt::Debug for aya::programs::perf_attach::PerfLink
  3991. pub fn aya::programs::perf_attach::PerfLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  3992. impl core::marker::Send for aya::programs::perf_attach::PerfLink
  3993. impl core::marker::Sync for aya::programs::perf_attach::PerfLink
  3994. impl core::marker::Unpin for aya::programs::perf_attach::PerfLink
  3995. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLink
  3996. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLink
  3997. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLink where U: core::convert::From<T>
  3998. pub fn aya::programs::perf_attach::PerfLink::into(self) -> U
  3999. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLink where U: core::convert::Into<T>
  4000. pub type aya::programs::perf_attach::PerfLink::Error = core::convert::Infallible
  4001. pub fn aya::programs::perf_attach::PerfLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4002. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLink where U: core::convert::TryFrom<T>
  4003. pub type aya::programs::perf_attach::PerfLink::Error = <U as core::convert::TryFrom<T>>::Error
  4004. pub fn aya::programs::perf_attach::PerfLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4005. impl<T> core::any::Any for aya::programs::perf_attach::PerfLink where T: 'static + core::marker::Sized
  4006. pub fn aya::programs::perf_attach::PerfLink::type_id(&self) -> core::any::TypeId
  4007. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLink where T: core::marker::Sized
  4008. pub fn aya::programs::perf_attach::PerfLink::borrow(&self) -> &T
  4009. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLink where T: core::marker::Sized
  4010. pub fn aya::programs::perf_attach::PerfLink::borrow_mut(&mut self) -> &mut T
  4011. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLink
  4012. pub fn aya::programs::perf_attach::PerfLink::from(t: T) -> T
  4013. pub struct aya::programs::perf_attach::PerfLinkId(_)
  4014. impl core::cmp::Eq for aya::programs::perf_attach::PerfLinkId
  4015. impl core::cmp::PartialEq<aya::programs::perf_attach::PerfLinkId> for aya::programs::perf_attach::PerfLinkId
  4016. pub fn aya::programs::perf_attach::PerfLinkId::eq(&self, other: &aya::programs::perf_attach::PerfLinkId) -> bool
  4017. impl core::fmt::Debug for aya::programs::perf_attach::PerfLinkId
  4018. pub fn aya::programs::perf_attach::PerfLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4019. impl core::hash::Hash for aya::programs::perf_attach::PerfLinkId
  4020. pub fn aya::programs::perf_attach::PerfLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4021. impl core::marker::StructuralEq for aya::programs::perf_attach::PerfLinkId
  4022. impl core::marker::StructuralPartialEq for aya::programs::perf_attach::PerfLinkId
  4023. impl core::marker::Send for aya::programs::perf_attach::PerfLinkId
  4024. impl core::marker::Sync for aya::programs::perf_attach::PerfLinkId
  4025. impl core::marker::Unpin for aya::programs::perf_attach::PerfLinkId
  4026. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_attach::PerfLinkId
  4027. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_attach::PerfLinkId
  4028. impl<T, U> core::convert::Into<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::From<T>
  4029. pub fn aya::programs::perf_attach::PerfLinkId::into(self) -> U
  4030. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::Into<T>
  4031. pub type aya::programs::perf_attach::PerfLinkId::Error = core::convert::Infallible
  4032. pub fn aya::programs::perf_attach::PerfLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4033. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_attach::PerfLinkId where U: core::convert::TryFrom<T>
  4034. pub type aya::programs::perf_attach::PerfLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4035. pub fn aya::programs::perf_attach::PerfLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4036. impl<T> core::any::Any for aya::programs::perf_attach::PerfLinkId where T: 'static + core::marker::Sized
  4037. pub fn aya::programs::perf_attach::PerfLinkId::type_id(&self) -> core::any::TypeId
  4038. impl<T> core::borrow::Borrow<T> for aya::programs::perf_attach::PerfLinkId where T: core::marker::Sized
  4039. pub fn aya::programs::perf_attach::PerfLinkId::borrow(&self) -> &T
  4040. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_attach::PerfLinkId where T: core::marker::Sized
  4041. pub fn aya::programs::perf_attach::PerfLinkId::borrow_mut(&mut self) -> &mut T
  4042. impl<T> core::convert::From<T> for aya::programs::perf_attach::PerfLinkId
  4043. pub fn aya::programs::perf_attach::PerfLinkId::from(t: T) -> T
  4044. pub mod aya::programs::perf_event
  4045. pub use aya::programs::perf_event::perf_hw_cache_id
  4046. pub use aya::programs::perf_event::perf_hw_cache_op_id
  4047. pub use aya::programs::perf_event::perf_hw_cache_op_result_id
  4048. pub use aya::programs::perf_event::perf_hw_id
  4049. pub use aya::programs::perf_event::perf_sw_ids
  4050. pub enum aya::programs::perf_event::PerfEventScope
  4051. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu
  4052. pub aya::programs::perf_event::PerfEventScope::AllProcessesOneCpu::cpu: u32
  4053. pub aya::programs::perf_event::PerfEventScope::CallingProcessAnyCpu
  4054. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu
  4055. pub aya::programs::perf_event::PerfEventScope::CallingProcessOneCpu::cpu: u32
  4056. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu
  4057. pub aya::programs::perf_event::PerfEventScope::OneProcessAnyCpu::pid: u32
  4058. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu
  4059. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::cpu: u32
  4060. pub aya::programs::perf_event::PerfEventScope::OneProcessOneCpu::pid: u32
  4061. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  4062. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  4063. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  4064. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4065. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  4066. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  4067. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  4068. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  4069. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  4070. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  4071. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  4072. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  4073. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  4074. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4075. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  4076. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  4077. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4078. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  4079. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  4080. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  4081. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  4082. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + core::marker::Sized
  4083. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  4084. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized
  4085. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  4086. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized
  4087. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  4088. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  4089. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  4090. #[repr(u32)] pub enum aya::programs::perf_event::PerfTypeId
  4091. pub aya::programs::perf_event::PerfTypeId::Breakpoint = 5
  4092. pub aya::programs::perf_event::PerfTypeId::Hardware = 0
  4093. pub aya::programs::perf_event::PerfTypeId::HwCache = 3
  4094. pub aya::programs::perf_event::PerfTypeId::Raw = 4
  4095. pub aya::programs::perf_event::PerfTypeId::Software = 1
  4096. pub aya::programs::perf_event::PerfTypeId::TracePoint = 2
  4097. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  4098. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  4099. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  4100. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4101. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  4102. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  4103. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  4104. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  4105. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  4106. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  4107. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  4108. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  4109. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  4110. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4111. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  4112. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  4113. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4114. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  4115. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  4116. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  4117. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  4118. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + core::marker::Sized
  4119. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  4120. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized
  4121. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  4122. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized
  4123. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  4124. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  4125. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  4126. pub enum aya::programs::perf_event::SamplePolicy
  4127. pub aya::programs::perf_event::SamplePolicy::Frequency(u64)
  4128. pub aya::programs::perf_event::SamplePolicy::Period(u64)
  4129. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  4130. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  4131. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  4132. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4133. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  4134. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  4135. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  4136. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  4137. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  4138. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  4139. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  4140. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  4141. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  4142. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4143. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  4144. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  4145. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4146. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  4147. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  4148. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  4149. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  4150. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + core::marker::Sized
  4151. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  4152. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized
  4153. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  4154. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized
  4155. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  4156. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  4157. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  4158. pub struct aya::programs::perf_event::PerfEvent
  4159. impl aya::programs::perf_event::PerfEvent
  4160. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  4161. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4162. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4163. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  4164. impl aya::programs::perf_event::PerfEvent
  4165. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4166. impl aya::programs::perf_event::PerfEvent
  4167. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4168. impl aya::programs::perf_event::PerfEvent
  4169. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4170. impl aya::programs::perf_event::PerfEvent
  4171. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4172. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4173. impl aya::programs::perf_event::PerfEvent
  4174. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4175. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  4176. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  4177. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  4178. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  4179. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  4180. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  4181. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  4182. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  4183. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  4184. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4185. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  4186. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  4187. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  4188. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  4189. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  4190. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  4191. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  4192. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  4193. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  4194. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4195. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  4196. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  4197. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4198. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + core::marker::Sized
  4199. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  4200. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: core::marker::Sized
  4201. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  4202. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: core::marker::Sized
  4203. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  4204. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  4205. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  4206. pub struct aya::programs::perf_event::PerfEventLink(_)
  4207. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  4208. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  4209. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4210. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  4211. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::perf_event::PerfEventLink
  4212. pub type aya::programs::perf_event::PerfEventLink::Error = aya::programs::links::LinkError
  4213. pub fn aya::programs::perf_event::PerfEventLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4214. impl core::convert::TryFrom<aya::programs::perf_event::PerfEventLink> for aya::programs::links::FdLink
  4215. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4216. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::perf_event::PerfEventLink) -> core::result::Result<Self, Self::Error>
  4217. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEventLink
  4218. pub fn aya::programs::perf_event::PerfEventLink::drop(&mut self)
  4219. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLink
  4220. pub fn aya::programs::perf_event::PerfEventLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4221. impl core::marker::Send for aya::programs::perf_event::PerfEventLink
  4222. impl core::marker::Sync for aya::programs::perf_event::PerfEventLink
  4223. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLink
  4224. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLink
  4225. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLink
  4226. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::From<T>
  4227. pub fn aya::programs::perf_event::PerfEventLink::into(self) -> U
  4228. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::Into<T>
  4229. pub type aya::programs::perf_event::PerfEventLink::Error = core::convert::Infallible
  4230. pub fn aya::programs::perf_event::PerfEventLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4231. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLink where U: core::convert::TryFrom<T>
  4232. pub type aya::programs::perf_event::PerfEventLink::Error = <U as core::convert::TryFrom<T>>::Error
  4233. pub fn aya::programs::perf_event::PerfEventLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4234. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLink where T: 'static + core::marker::Sized
  4235. pub fn aya::programs::perf_event::PerfEventLink::type_id(&self) -> core::any::TypeId
  4236. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLink where T: core::marker::Sized
  4237. pub fn aya::programs::perf_event::PerfEventLink::borrow(&self) -> &T
  4238. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLink where T: core::marker::Sized
  4239. pub fn aya::programs::perf_event::PerfEventLink::borrow_mut(&mut self) -> &mut T
  4240. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLink
  4241. pub fn aya::programs::perf_event::PerfEventLink::from(t: T) -> T
  4242. pub struct aya::programs::perf_event::PerfEventLinkId(_)
  4243. impl core::cmp::Eq for aya::programs::perf_event::PerfEventLinkId
  4244. impl core::cmp::PartialEq<aya::programs::perf_event::PerfEventLinkId> for aya::programs::perf_event::PerfEventLinkId
  4245. pub fn aya::programs::perf_event::PerfEventLinkId::eq(&self, other: &aya::programs::perf_event::PerfEventLinkId) -> bool
  4246. impl core::fmt::Debug for aya::programs::perf_event::PerfEventLinkId
  4247. pub fn aya::programs::perf_event::PerfEventLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4248. impl core::hash::Hash for aya::programs::perf_event::PerfEventLinkId
  4249. pub fn aya::programs::perf_event::PerfEventLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4250. impl core::marker::StructuralEq for aya::programs::perf_event::PerfEventLinkId
  4251. impl core::marker::StructuralPartialEq for aya::programs::perf_event::PerfEventLinkId
  4252. impl core::marker::Send for aya::programs::perf_event::PerfEventLinkId
  4253. impl core::marker::Sync for aya::programs::perf_event::PerfEventLinkId
  4254. impl core::marker::Unpin for aya::programs::perf_event::PerfEventLinkId
  4255. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventLinkId
  4256. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventLinkId
  4257. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::From<T>
  4258. pub fn aya::programs::perf_event::PerfEventLinkId::into(self) -> U
  4259. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::Into<T>
  4260. pub type aya::programs::perf_event::PerfEventLinkId::Error = core::convert::Infallible
  4261. pub fn aya::programs::perf_event::PerfEventLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4262. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventLinkId where U: core::convert::TryFrom<T>
  4263. pub type aya::programs::perf_event::PerfEventLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4264. pub fn aya::programs::perf_event::PerfEventLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4265. impl<T> core::any::Any for aya::programs::perf_event::PerfEventLinkId where T: 'static + core::marker::Sized
  4266. pub fn aya::programs::perf_event::PerfEventLinkId::type_id(&self) -> core::any::TypeId
  4267. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventLinkId where T: core::marker::Sized
  4268. pub fn aya::programs::perf_event::PerfEventLinkId::borrow(&self) -> &T
  4269. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventLinkId where T: core::marker::Sized
  4270. pub fn aya::programs::perf_event::PerfEventLinkId::borrow_mut(&mut self) -> &mut T
  4271. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventLinkId
  4272. pub fn aya::programs::perf_event::PerfEventLinkId::from(t: T) -> T
  4273. pub mod aya::programs::tc
  4274. pub enum aya::programs::tc::TcAttachType
  4275. pub aya::programs::tc::TcAttachType::Custom(u32)
  4276. pub aya::programs::tc::TcAttachType::Egress
  4277. pub aya::programs::tc::TcAttachType::Ingress
  4278. impl core::clone::Clone for aya::programs::tc::TcAttachType
  4279. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  4280. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  4281. impl core::cmp::PartialEq<aya::programs::tc::TcAttachType> for aya::programs::tc::TcAttachType
  4282. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  4283. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  4284. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4285. impl core::hash::Hash for aya::programs::tc::TcAttachType
  4286. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4287. impl core::marker::Copy for aya::programs::tc::TcAttachType
  4288. impl core::marker::StructuralEq for aya::programs::tc::TcAttachType
  4289. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  4290. impl core::marker::Send for aya::programs::tc::TcAttachType
  4291. impl core::marker::Sync for aya::programs::tc::TcAttachType
  4292. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  4293. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  4294. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  4295. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  4296. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  4297. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  4298. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  4299. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4300. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  4301. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  4302. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4303. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  4304. pub type aya::programs::tc::TcAttachType::Owned = T
  4305. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  4306. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  4307. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + core::marker::Sized
  4308. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  4309. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: core::marker::Sized
  4310. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  4311. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: core::marker::Sized
  4312. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  4313. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  4314. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  4315. pub enum aya::programs::tc::TcError
  4316. pub aya::programs::tc::TcError::AlreadyAttached
  4317. pub aya::programs::tc::TcError::NetlinkError
  4318. pub aya::programs::tc::TcError::NetlinkError::io_error: std::io::error::Error
  4319. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  4320. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  4321. impl core::error::Error for aya::programs::tc::TcError
  4322. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4323. impl core::fmt::Display for aya::programs::tc::TcError
  4324. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4325. impl core::fmt::Debug for aya::programs::tc::TcError
  4326. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4327. impl core::marker::Send for aya::programs::tc::TcError
  4328. impl core::marker::Sync for aya::programs::tc::TcError
  4329. impl core::marker::Unpin for aya::programs::tc::TcError
  4330. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  4331. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  4332. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  4333. pub fn aya::programs::tc::TcError::into(self) -> U
  4334. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  4335. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  4336. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4337. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  4338. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  4339. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4340. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + core::marker::Sized
  4341. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  4342. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + core::marker::Sized
  4343. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  4344. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: core::marker::Sized
  4345. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  4346. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: core::marker::Sized
  4347. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  4348. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  4349. pub fn aya::programs::tc::TcError::from(t: T) -> T
  4350. pub struct aya::programs::tc::SchedClassifier
  4351. impl aya::programs::tc::SchedClassifier
  4352. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  4353. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  4354. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4355. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4356. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4357. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  4358. impl aya::programs::tc::SchedClassifier
  4359. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4360. impl aya::programs::tc::SchedClassifier
  4361. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4362. impl aya::programs::tc::SchedClassifier
  4363. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4364. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4365. impl aya::programs::tc::SchedClassifier
  4366. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4367. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  4368. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  4369. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  4370. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  4371. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  4372. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  4373. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  4374. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  4375. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  4376. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4377. impl core::marker::Send for aya::programs::tc::SchedClassifier
  4378. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  4379. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  4380. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  4381. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  4382. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  4383. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  4384. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  4385. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  4386. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4387. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  4388. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  4389. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4390. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + core::marker::Sized
  4391. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  4392. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: core::marker::Sized
  4393. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  4394. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: core::marker::Sized
  4395. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  4396. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  4397. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  4398. pub struct aya::programs::tc::SchedClassifierLink(_)
  4399. impl aya::programs::tc::SchedClassifierLink
  4400. pub fn aya::programs::tc::SchedClassifierLink::attached(if_name: &str, attach_type: aya::programs::tc::TcAttachType, priority: u16, handle: u32) -> core::result::Result<Self, std::io::error::Error>
  4401. pub fn aya::programs::tc::SchedClassifierLink::handle(&self) -> u32
  4402. pub fn aya::programs::tc::SchedClassifierLink::priority(&self) -> u16
  4403. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  4404. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  4405. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4406. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  4407. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifierLink
  4408. pub fn aya::programs::tc::SchedClassifierLink::drop(&mut self)
  4409. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLink
  4410. pub fn aya::programs::tc::SchedClassifierLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4411. impl core::marker::Send for aya::programs::tc::SchedClassifierLink
  4412. impl core::marker::Sync for aya::programs::tc::SchedClassifierLink
  4413. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLink
  4414. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLink
  4415. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLink
  4416. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::From<T>
  4417. pub fn aya::programs::tc::SchedClassifierLink::into(self) -> U
  4418. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::Into<T>
  4419. pub type aya::programs::tc::SchedClassifierLink::Error = core::convert::Infallible
  4420. pub fn aya::programs::tc::SchedClassifierLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4421. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLink where U: core::convert::TryFrom<T>
  4422. pub type aya::programs::tc::SchedClassifierLink::Error = <U as core::convert::TryFrom<T>>::Error
  4423. pub fn aya::programs::tc::SchedClassifierLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4424. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLink where T: 'static + core::marker::Sized
  4425. pub fn aya::programs::tc::SchedClassifierLink::type_id(&self) -> core::any::TypeId
  4426. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLink where T: core::marker::Sized
  4427. pub fn aya::programs::tc::SchedClassifierLink::borrow(&self) -> &T
  4428. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLink where T: core::marker::Sized
  4429. pub fn aya::programs::tc::SchedClassifierLink::borrow_mut(&mut self) -> &mut T
  4430. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLink
  4431. pub fn aya::programs::tc::SchedClassifierLink::from(t: T) -> T
  4432. pub struct aya::programs::tc::SchedClassifierLinkId(_)
  4433. impl core::cmp::Eq for aya::programs::tc::SchedClassifierLinkId
  4434. impl core::cmp::PartialEq<aya::programs::tc::SchedClassifierLinkId> for aya::programs::tc::SchedClassifierLinkId
  4435. pub fn aya::programs::tc::SchedClassifierLinkId::eq(&self, other: &aya::programs::tc::SchedClassifierLinkId) -> bool
  4436. impl core::fmt::Debug for aya::programs::tc::SchedClassifierLinkId
  4437. pub fn aya::programs::tc::SchedClassifierLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4438. impl core::hash::Hash for aya::programs::tc::SchedClassifierLinkId
  4439. pub fn aya::programs::tc::SchedClassifierLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4440. impl core::marker::StructuralEq for aya::programs::tc::SchedClassifierLinkId
  4441. impl core::marker::StructuralPartialEq for aya::programs::tc::SchedClassifierLinkId
  4442. impl core::marker::Send for aya::programs::tc::SchedClassifierLinkId
  4443. impl core::marker::Sync for aya::programs::tc::SchedClassifierLinkId
  4444. impl core::marker::Unpin for aya::programs::tc::SchedClassifierLinkId
  4445. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifierLinkId
  4446. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifierLinkId
  4447. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::From<T>
  4448. pub fn aya::programs::tc::SchedClassifierLinkId::into(self) -> U
  4449. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::Into<T>
  4450. pub type aya::programs::tc::SchedClassifierLinkId::Error = core::convert::Infallible
  4451. pub fn aya::programs::tc::SchedClassifierLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4452. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifierLinkId where U: core::convert::TryFrom<T>
  4453. pub type aya::programs::tc::SchedClassifierLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4454. pub fn aya::programs::tc::SchedClassifierLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4455. impl<T> core::any::Any for aya::programs::tc::SchedClassifierLinkId where T: 'static + core::marker::Sized
  4456. pub fn aya::programs::tc::SchedClassifierLinkId::type_id(&self) -> core::any::TypeId
  4457. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifierLinkId where T: core::marker::Sized
  4458. pub fn aya::programs::tc::SchedClassifierLinkId::borrow(&self) -> &T
  4459. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifierLinkId where T: core::marker::Sized
  4460. pub fn aya::programs::tc::SchedClassifierLinkId::borrow_mut(&mut self) -> &mut T
  4461. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifierLinkId
  4462. pub fn aya::programs::tc::SchedClassifierLinkId::from(t: T) -> T
  4463. pub struct aya::programs::tc::TcOptions
  4464. pub aya::programs::tc::TcOptions::handle: u32
  4465. pub aya::programs::tc::TcOptions::priority: u16
  4466. impl core::default::Default for aya::programs::tc::TcOptions
  4467. pub fn aya::programs::tc::TcOptions::default() -> aya::programs::tc::TcOptions
  4468. impl core::marker::Send for aya::programs::tc::TcOptions
  4469. impl core::marker::Sync for aya::programs::tc::TcOptions
  4470. impl core::marker::Unpin for aya::programs::tc::TcOptions
  4471. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcOptions
  4472. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcOptions
  4473. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcOptions where U: core::convert::From<T>
  4474. pub fn aya::programs::tc::TcOptions::into(self) -> U
  4475. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcOptions where U: core::convert::Into<T>
  4476. pub type aya::programs::tc::TcOptions::Error = core::convert::Infallible
  4477. pub fn aya::programs::tc::TcOptions::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4478. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcOptions where U: core::convert::TryFrom<T>
  4479. pub type aya::programs::tc::TcOptions::Error = <U as core::convert::TryFrom<T>>::Error
  4480. pub fn aya::programs::tc::TcOptions::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4481. impl<T> core::any::Any for aya::programs::tc::TcOptions where T: 'static + core::marker::Sized
  4482. pub fn aya::programs::tc::TcOptions::type_id(&self) -> core::any::TypeId
  4483. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcOptions where T: core::marker::Sized
  4484. pub fn aya::programs::tc::TcOptions::borrow(&self) -> &T
  4485. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcOptions where T: core::marker::Sized
  4486. pub fn aya::programs::tc::TcOptions::borrow_mut(&mut self) -> &mut T
  4487. impl<T> core::convert::From<T> for aya::programs::tc::TcOptions
  4488. pub fn aya::programs::tc::TcOptions::from(t: T) -> T
  4489. pub fn aya::programs::tc::qdisc_add_clsact(if_name: &str) -> core::result::Result<(), std::io::error::Error>
  4490. pub fn aya::programs::tc::qdisc_detach_program(if_name: &str, attach_type: aya::programs::tc::TcAttachType, name: &str) -> core::result::Result<(), std::io::error::Error>
  4491. pub mod aya::programs::tp_btf
  4492. pub struct aya::programs::tp_btf::BtfTracePoint
  4493. impl aya::programs::tp_btf::BtfTracePoint
  4494. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  4495. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4496. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  4497. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  4498. impl aya::programs::tp_btf::BtfTracePoint
  4499. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4500. impl aya::programs::tp_btf::BtfTracePoint
  4501. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4502. impl aya::programs::tp_btf::BtfTracePoint
  4503. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4504. impl aya::programs::tp_btf::BtfTracePoint
  4505. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4506. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4507. impl aya::programs::tp_btf::BtfTracePoint
  4508. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4509. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  4510. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  4511. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  4512. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  4513. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  4514. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  4515. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  4516. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  4517. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  4518. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4519. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  4520. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  4521. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  4522. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  4523. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  4524. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  4525. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  4526. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  4527. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  4528. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4529. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  4530. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  4531. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4532. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + core::marker::Sized
  4533. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  4534. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized
  4535. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  4536. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized
  4537. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  4538. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  4539. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  4540. pub struct aya::programs::tp_btf::BtfTracePointLink(_)
  4541. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  4542. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  4543. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4544. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  4545. impl core::convert::From<aya::programs::links::FdLink> for aya::programs::tp_btf::BtfTracePointLink
  4546. pub fn aya::programs::tp_btf::BtfTracePointLink::from(b: aya::programs::links::FdLink) -> aya::programs::tp_btf::BtfTracePointLink
  4547. impl core::convert::From<aya::programs::tp_btf::BtfTracePointLink> for aya::programs::links::FdLink
  4548. pub fn aya::programs::links::FdLink::from(w: aya::programs::tp_btf::BtfTracePointLink) -> aya::programs::links::FdLink
  4549. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePointLink
  4550. pub fn aya::programs::tp_btf::BtfTracePointLink::drop(&mut self)
  4551. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLink
  4552. pub fn aya::programs::tp_btf::BtfTracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4553. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLink
  4554. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLink
  4555. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLink
  4556. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  4557. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLink
  4558. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::From<T>
  4559. pub fn aya::programs::tp_btf::BtfTracePointLink::into(self) -> U
  4560. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::Into<T>
  4561. pub type aya::programs::tp_btf::BtfTracePointLink::Error = core::convert::Infallible
  4562. pub fn aya::programs::tp_btf::BtfTracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4563. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLink where U: core::convert::TryFrom<T>
  4564. pub type aya::programs::tp_btf::BtfTracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  4565. pub fn aya::programs::tp_btf::BtfTracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4566. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLink where T: 'static + core::marker::Sized
  4567. pub fn aya::programs::tp_btf::BtfTracePointLink::type_id(&self) -> core::any::TypeId
  4568. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLink where T: core::marker::Sized
  4569. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow(&self) -> &T
  4570. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLink where T: core::marker::Sized
  4571. pub fn aya::programs::tp_btf::BtfTracePointLink::borrow_mut(&mut self) -> &mut T
  4572. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLink
  4573. pub fn aya::programs::tp_btf::BtfTracePointLink::from(t: T) -> T
  4574. pub struct aya::programs::tp_btf::BtfTracePointLinkId(_)
  4575. impl core::cmp::Eq for aya::programs::tp_btf::BtfTracePointLinkId
  4576. impl core::cmp::PartialEq<aya::programs::tp_btf::BtfTracePointLinkId> for aya::programs::tp_btf::BtfTracePointLinkId
  4577. pub fn aya::programs::tp_btf::BtfTracePointLinkId::eq(&self, other: &aya::programs::tp_btf::BtfTracePointLinkId) -> bool
  4578. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePointLinkId
  4579. pub fn aya::programs::tp_btf::BtfTracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4580. impl core::hash::Hash for aya::programs::tp_btf::BtfTracePointLinkId
  4581. pub fn aya::programs::tp_btf::BtfTracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4582. impl core::marker::StructuralEq for aya::programs::tp_btf::BtfTracePointLinkId
  4583. impl core::marker::StructuralPartialEq for aya::programs::tp_btf::BtfTracePointLinkId
  4584. impl core::marker::Send for aya::programs::tp_btf::BtfTracePointLinkId
  4585. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePointLinkId
  4586. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePointLinkId
  4587. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  4588. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePointLinkId
  4589. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::From<T>
  4590. pub fn aya::programs::tp_btf::BtfTracePointLinkId::into(self) -> U
  4591. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::Into<T>
  4592. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = core::convert::Infallible
  4593. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4594. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePointLinkId where U: core::convert::TryFrom<T>
  4595. pub type aya::programs::tp_btf::BtfTracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4596. pub fn aya::programs::tp_btf::BtfTracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4597. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePointLinkId where T: 'static + core::marker::Sized
  4598. pub fn aya::programs::tp_btf::BtfTracePointLinkId::type_id(&self) -> core::any::TypeId
  4599. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: core::marker::Sized
  4600. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow(&self) -> &T
  4601. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePointLinkId where T: core::marker::Sized
  4602. pub fn aya::programs::tp_btf::BtfTracePointLinkId::borrow_mut(&mut self) -> &mut T
  4603. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePointLinkId
  4604. pub fn aya::programs::tp_btf::BtfTracePointLinkId::from(t: T) -> T
  4605. pub mod aya::programs::trace_point
  4606. pub enum aya::programs::trace_point::TracePointError
  4607. pub aya::programs::trace_point::TracePointError::FileError
  4608. pub aya::programs::trace_point::TracePointError::FileError::filename: alloc::string::String
  4609. pub aya::programs::trace_point::TracePointError::FileError::io_error: std::io::error::Error
  4610. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  4611. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  4612. impl core::error::Error for aya::programs::trace_point::TracePointError
  4613. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4614. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  4615. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4616. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  4617. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4618. impl core::marker::Send for aya::programs::trace_point::TracePointError
  4619. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  4620. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  4621. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  4622. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  4623. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  4624. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  4625. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  4626. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  4627. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4628. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  4629. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  4630. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4631. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + core::marker::Sized
  4632. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  4633. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + core::marker::Sized
  4634. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  4635. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: core::marker::Sized
  4636. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  4637. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: core::marker::Sized
  4638. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  4639. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  4640. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  4641. pub struct aya::programs::trace_point::TracePoint
  4642. impl aya::programs::trace_point::TracePoint
  4643. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  4644. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4645. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4646. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  4647. impl aya::programs::trace_point::TracePoint
  4648. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4649. impl aya::programs::trace_point::TracePoint
  4650. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  4651. impl aya::programs::trace_point::TracePoint
  4652. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4653. impl aya::programs::trace_point::TracePoint
  4654. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4655. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4656. impl aya::programs::trace_point::TracePoint
  4657. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4658. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  4659. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  4660. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  4661. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  4662. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  4663. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  4664. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  4665. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  4666. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  4667. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4668. impl core::marker::Send for aya::programs::trace_point::TracePoint
  4669. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  4670. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  4671. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  4672. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  4673. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  4674. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  4675. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  4676. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  4677. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4678. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  4679. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  4680. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4681. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + core::marker::Sized
  4682. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  4683. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: core::marker::Sized
  4684. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  4685. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: core::marker::Sized
  4686. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  4687. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  4688. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  4689. pub struct aya::programs::trace_point::TracePointLink(_)
  4690. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  4691. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  4692. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4693. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  4694. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::trace_point::TracePointLink
  4695. pub type aya::programs::trace_point::TracePointLink::Error = aya::programs::links::LinkError
  4696. pub fn aya::programs::trace_point::TracePointLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4697. impl core::convert::TryFrom<aya::programs::trace_point::TracePointLink> for aya::programs::links::FdLink
  4698. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4699. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::trace_point::TracePointLink) -> core::result::Result<Self, Self::Error>
  4700. impl core::ops::drop::Drop for aya::programs::trace_point::TracePointLink
  4701. pub fn aya::programs::trace_point::TracePointLink::drop(&mut self)
  4702. impl core::fmt::Debug for aya::programs::trace_point::TracePointLink
  4703. pub fn aya::programs::trace_point::TracePointLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4704. impl core::marker::Send for aya::programs::trace_point::TracePointLink
  4705. impl core::marker::Sync for aya::programs::trace_point::TracePointLink
  4706. impl core::marker::Unpin for aya::programs::trace_point::TracePointLink
  4707. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLink
  4708. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLink
  4709. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLink where U: core::convert::From<T>
  4710. pub fn aya::programs::trace_point::TracePointLink::into(self) -> U
  4711. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLink where U: core::convert::Into<T>
  4712. pub type aya::programs::trace_point::TracePointLink::Error = core::convert::Infallible
  4713. pub fn aya::programs::trace_point::TracePointLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4714. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLink where U: core::convert::TryFrom<T>
  4715. pub type aya::programs::trace_point::TracePointLink::Error = <U as core::convert::TryFrom<T>>::Error
  4716. pub fn aya::programs::trace_point::TracePointLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4717. impl<T> core::any::Any for aya::programs::trace_point::TracePointLink where T: 'static + core::marker::Sized
  4718. pub fn aya::programs::trace_point::TracePointLink::type_id(&self) -> core::any::TypeId
  4719. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLink where T: core::marker::Sized
  4720. pub fn aya::programs::trace_point::TracePointLink::borrow(&self) -> &T
  4721. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLink where T: core::marker::Sized
  4722. pub fn aya::programs::trace_point::TracePointLink::borrow_mut(&mut self) -> &mut T
  4723. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLink
  4724. pub fn aya::programs::trace_point::TracePointLink::from(t: T) -> T
  4725. pub struct aya::programs::trace_point::TracePointLinkId(_)
  4726. impl core::cmp::Eq for aya::programs::trace_point::TracePointLinkId
  4727. impl core::cmp::PartialEq<aya::programs::trace_point::TracePointLinkId> for aya::programs::trace_point::TracePointLinkId
  4728. pub fn aya::programs::trace_point::TracePointLinkId::eq(&self, other: &aya::programs::trace_point::TracePointLinkId) -> bool
  4729. impl core::fmt::Debug for aya::programs::trace_point::TracePointLinkId
  4730. pub fn aya::programs::trace_point::TracePointLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4731. impl core::hash::Hash for aya::programs::trace_point::TracePointLinkId
  4732. pub fn aya::programs::trace_point::TracePointLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4733. impl core::marker::StructuralEq for aya::programs::trace_point::TracePointLinkId
  4734. impl core::marker::StructuralPartialEq for aya::programs::trace_point::TracePointLinkId
  4735. impl core::marker::Send for aya::programs::trace_point::TracePointLinkId
  4736. impl core::marker::Sync for aya::programs::trace_point::TracePointLinkId
  4737. impl core::marker::Unpin for aya::programs::trace_point::TracePointLinkId
  4738. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointLinkId
  4739. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointLinkId
  4740. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::From<T>
  4741. pub fn aya::programs::trace_point::TracePointLinkId::into(self) -> U
  4742. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::Into<T>
  4743. pub type aya::programs::trace_point::TracePointLinkId::Error = core::convert::Infallible
  4744. pub fn aya::programs::trace_point::TracePointLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4745. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointLinkId where U: core::convert::TryFrom<T>
  4746. pub type aya::programs::trace_point::TracePointLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4747. pub fn aya::programs::trace_point::TracePointLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4748. impl<T> core::any::Any for aya::programs::trace_point::TracePointLinkId where T: 'static + core::marker::Sized
  4749. pub fn aya::programs::trace_point::TracePointLinkId::type_id(&self) -> core::any::TypeId
  4750. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointLinkId where T: core::marker::Sized
  4751. pub fn aya::programs::trace_point::TracePointLinkId::borrow(&self) -> &T
  4752. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointLinkId where T: core::marker::Sized
  4753. pub fn aya::programs::trace_point::TracePointLinkId::borrow_mut(&mut self) -> &mut T
  4754. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointLinkId
  4755. pub fn aya::programs::trace_point::TracePointLinkId::from(t: T) -> T
  4756. pub mod aya::programs::uprobe
  4757. pub enum aya::programs::uprobe::UProbeError
  4758. pub aya::programs::uprobe::UProbeError::FileError
  4759. pub aya::programs::uprobe::UProbeError::FileError::filename: std::path::PathBuf
  4760. pub aya::programs::uprobe::UProbeError::FileError::io_error: std::io::error::Error
  4761. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache
  4762. pub aya::programs::uprobe::UProbeError::InvalidLdSoCache::io_error: alloc::sync::Arc<std::io::error::Error>
  4763. pub aya::programs::uprobe::UProbeError::InvalidTarget
  4764. pub aya::programs::uprobe::UProbeError::InvalidTarget::path: std::path::PathBuf
  4765. pub aya::programs::uprobe::UProbeError::SymbolError
  4766. pub aya::programs::uprobe::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  4767. pub aya::programs::uprobe::UProbeError::SymbolError::symbol: alloc::string::String
  4768. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  4769. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  4770. impl core::error::Error for aya::programs::uprobe::UProbeError
  4771. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4772. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  4773. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4774. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  4775. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4776. impl core::marker::Send for aya::programs::uprobe::UProbeError
  4777. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  4778. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  4779. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  4780. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  4781. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  4782. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  4783. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  4784. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  4785. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4786. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  4787. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  4788. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4789. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + core::marker::Sized
  4790. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  4791. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + core::marker::Sized
  4792. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  4793. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: core::marker::Sized
  4794. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  4795. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: core::marker::Sized
  4796. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  4797. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  4798. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  4799. pub struct aya::programs::uprobe::UProbe
  4800. impl aya::programs::uprobe::UProbe
  4801. pub fn aya::programs::uprobe::UProbe::attach<T: core::convert::AsRef<std::path::Path>>(&mut self, fn_name: core::option::Option<&str>, offset: u64, target: T, pid: core::option::Option<libc::unix::pid_t>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  4802. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4803. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  4804. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  4805. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4806. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  4807. impl aya::programs::uprobe::UProbe
  4808. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4809. impl aya::programs::uprobe::UProbe
  4810. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4811. impl aya::programs::uprobe::UProbe
  4812. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4813. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4814. impl aya::programs::uprobe::UProbe
  4815. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4816. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  4817. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  4818. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  4819. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  4820. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  4821. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  4822. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  4823. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  4824. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  4825. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4826. impl core::marker::Send for aya::programs::uprobe::UProbe
  4827. impl core::marker::Sync for aya::programs::uprobe::UProbe
  4828. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  4829. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  4830. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  4831. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  4832. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  4833. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  4834. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  4835. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4836. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  4837. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  4838. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4839. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + core::marker::Sized
  4840. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  4841. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: core::marker::Sized
  4842. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  4843. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: core::marker::Sized
  4844. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  4845. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  4846. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  4847. pub struct aya::programs::uprobe::UProbeLink(_)
  4848. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  4849. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  4850. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  4851. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  4852. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::uprobe::UProbeLink
  4853. pub type aya::programs::uprobe::UProbeLink::Error = aya::programs::links::LinkError
  4854. pub fn aya::programs::uprobe::UProbeLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  4855. impl core::convert::TryFrom<aya::programs::uprobe::UProbeLink> for aya::programs::links::FdLink
  4856. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  4857. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::uprobe::UProbeLink) -> core::result::Result<Self, Self::Error>
  4858. impl core::ops::drop::Drop for aya::programs::uprobe::UProbeLink
  4859. pub fn aya::programs::uprobe::UProbeLink::drop(&mut self)
  4860. impl core::fmt::Debug for aya::programs::uprobe::UProbeLink
  4861. pub fn aya::programs::uprobe::UProbeLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4862. impl core::marker::Send for aya::programs::uprobe::UProbeLink
  4863. impl core::marker::Sync for aya::programs::uprobe::UProbeLink
  4864. impl core::marker::Unpin for aya::programs::uprobe::UProbeLink
  4865. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLink
  4866. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLink
  4867. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLink where U: core::convert::From<T>
  4868. pub fn aya::programs::uprobe::UProbeLink::into(self) -> U
  4869. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLink where U: core::convert::Into<T>
  4870. pub type aya::programs::uprobe::UProbeLink::Error = core::convert::Infallible
  4871. pub fn aya::programs::uprobe::UProbeLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4872. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLink where U: core::convert::TryFrom<T>
  4873. pub type aya::programs::uprobe::UProbeLink::Error = <U as core::convert::TryFrom<T>>::Error
  4874. pub fn aya::programs::uprobe::UProbeLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4875. impl<T> core::any::Any for aya::programs::uprobe::UProbeLink where T: 'static + core::marker::Sized
  4876. pub fn aya::programs::uprobe::UProbeLink::type_id(&self) -> core::any::TypeId
  4877. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLink where T: core::marker::Sized
  4878. pub fn aya::programs::uprobe::UProbeLink::borrow(&self) -> &T
  4879. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLink where T: core::marker::Sized
  4880. pub fn aya::programs::uprobe::UProbeLink::borrow_mut(&mut self) -> &mut T
  4881. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLink
  4882. pub fn aya::programs::uprobe::UProbeLink::from(t: T) -> T
  4883. pub struct aya::programs::uprobe::UProbeLinkId(_)
  4884. impl core::cmp::Eq for aya::programs::uprobe::UProbeLinkId
  4885. impl core::cmp::PartialEq<aya::programs::uprobe::UProbeLinkId> for aya::programs::uprobe::UProbeLinkId
  4886. pub fn aya::programs::uprobe::UProbeLinkId::eq(&self, other: &aya::programs::uprobe::UProbeLinkId) -> bool
  4887. impl core::fmt::Debug for aya::programs::uprobe::UProbeLinkId
  4888. pub fn aya::programs::uprobe::UProbeLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4889. impl core::hash::Hash for aya::programs::uprobe::UProbeLinkId
  4890. pub fn aya::programs::uprobe::UProbeLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  4891. impl core::marker::StructuralEq for aya::programs::uprobe::UProbeLinkId
  4892. impl core::marker::StructuralPartialEq for aya::programs::uprobe::UProbeLinkId
  4893. impl core::marker::Send for aya::programs::uprobe::UProbeLinkId
  4894. impl core::marker::Sync for aya::programs::uprobe::UProbeLinkId
  4895. impl core::marker::Unpin for aya::programs::uprobe::UProbeLinkId
  4896. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeLinkId
  4897. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeLinkId
  4898. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::From<T>
  4899. pub fn aya::programs::uprobe::UProbeLinkId::into(self) -> U
  4900. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::Into<T>
  4901. pub type aya::programs::uprobe::UProbeLinkId::Error = core::convert::Infallible
  4902. pub fn aya::programs::uprobe::UProbeLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4903. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeLinkId where U: core::convert::TryFrom<T>
  4904. pub type aya::programs::uprobe::UProbeLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  4905. pub fn aya::programs::uprobe::UProbeLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4906. impl<T> core::any::Any for aya::programs::uprobe::UProbeLinkId where T: 'static + core::marker::Sized
  4907. pub fn aya::programs::uprobe::UProbeLinkId::type_id(&self) -> core::any::TypeId
  4908. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeLinkId where T: core::marker::Sized
  4909. pub fn aya::programs::uprobe::UProbeLinkId::borrow(&self) -> &T
  4910. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeLinkId where T: core::marker::Sized
  4911. pub fn aya::programs::uprobe::UProbeLinkId::borrow_mut(&mut self) -> &mut T
  4912. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeLinkId
  4913. pub fn aya::programs::uprobe::UProbeLinkId::from(t: T) -> T
  4914. pub mod aya::programs::xdp
  4915. pub enum aya::programs::xdp::XdpError
  4916. pub aya::programs::xdp::XdpError::NetlinkError
  4917. pub aya::programs::xdp::XdpError::NetlinkError::io_error: std::io::error::Error
  4918. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  4919. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  4920. impl core::error::Error for aya::programs::xdp::XdpError
  4921. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  4922. impl core::fmt::Display for aya::programs::xdp::XdpError
  4923. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4924. impl core::fmt::Debug for aya::programs::xdp::XdpError
  4925. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4926. impl core::marker::Send for aya::programs::xdp::XdpError
  4927. impl core::marker::Sync for aya::programs::xdp::XdpError
  4928. impl core::marker::Unpin for aya::programs::xdp::XdpError
  4929. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  4930. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  4931. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  4932. pub fn aya::programs::xdp::XdpError::into(self) -> U
  4933. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  4934. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  4935. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4936. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  4937. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  4938. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4939. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + core::marker::Sized
  4940. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  4941. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + core::marker::Sized
  4942. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  4943. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: core::marker::Sized
  4944. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  4945. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: core::marker::Sized
  4946. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  4947. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  4948. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  4949. pub struct aya::programs::xdp::Xdp
  4950. impl aya::programs::xdp::Xdp
  4951. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  4952. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  4953. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  4954. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  4955. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  4956. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4957. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  4958. impl aya::programs::xdp::Xdp
  4959. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  4960. impl aya::programs::xdp::Xdp
  4961. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  4962. impl aya::programs::xdp::Xdp
  4963. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  4964. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  4965. impl aya::programs::xdp::Xdp
  4966. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  4967. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  4968. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  4969. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  4970. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  4971. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  4972. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  4973. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  4974. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  4975. impl core::fmt::Debug for aya::programs::xdp::Xdp
  4976. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  4977. impl core::marker::Send for aya::programs::xdp::Xdp
  4978. impl core::marker::Sync for aya::programs::xdp::Xdp
  4979. impl core::marker::Unpin for aya::programs::xdp::Xdp
  4980. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  4981. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  4982. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  4983. pub fn aya::programs::xdp::Xdp::into(self) -> U
  4984. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  4985. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  4986. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  4987. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  4988. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  4989. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  4990. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + core::marker::Sized
  4991. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  4992. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: core::marker::Sized
  4993. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  4994. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: core::marker::Sized
  4995. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  4996. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  4997. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  4998. pub struct aya::programs::xdp::XdpFlags(_)
  4999. impl aya::programs::xdp::XdpFlags
  5000. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  5001. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  5002. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  5003. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  5004. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  5005. impl aya::programs::xdp::XdpFlags
  5006. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  5007. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  5008. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  5009. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  5010. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  5011. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  5012. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  5013. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  5014. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  5015. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  5016. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  5017. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  5018. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  5019. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  5020. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  5021. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  5022. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  5023. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  5024. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  5025. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  5026. impl aya::programs::xdp::XdpFlags
  5027. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  5028. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  5029. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  5030. pub type aya::programs::xdp::XdpFlags::Bits = u32
  5031. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  5032. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  5033. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  5034. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  5035. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  5036. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  5037. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  5038. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5039. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  5040. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5041. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  5042. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5043. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  5044. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5045. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5046. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  5047. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5048. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  5049. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  5050. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  5051. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  5052. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  5053. impl core::ops::arith::Sub<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5054. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5055. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  5056. impl core::ops::arith::SubAssign<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5057. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  5058. impl core::ops::bit::BitAnd<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5059. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5060. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  5061. impl core::ops::bit::BitAndAssign<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5062. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  5063. impl core::ops::bit::BitOr<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5064. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5065. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  5066. impl core::ops::bit::BitOrAssign<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5067. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  5068. impl core::ops::bit::BitXor<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5069. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5070. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  5071. impl core::ops::bit::BitXorAssign<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  5072. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  5073. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  5074. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  5075. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  5076. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  5077. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  5078. impl core::default::Default for aya::programs::xdp::XdpFlags
  5079. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  5080. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  5081. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5082. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  5083. impl core::marker::Send for aya::programs::xdp::XdpFlags
  5084. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  5085. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  5086. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  5087. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  5088. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  5089. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  5090. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  5091. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  5092. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5093. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  5094. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  5095. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5096. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  5097. pub type aya::programs::xdp::XdpFlags::Owned = T
  5098. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  5099. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  5100. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + core::marker::Sized
  5101. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  5102. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: core::marker::Sized
  5103. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  5104. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: core::marker::Sized
  5105. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  5106. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  5107. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  5108. pub struct aya::programs::xdp::XdpLink(_)
  5109. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  5110. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  5111. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  5112. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  5113. impl core::convert::TryFrom<aya::programs::links::FdLink> for aya::programs::xdp::XdpLink
  5114. pub type aya::programs::xdp::XdpLink::Error = aya::programs::links::LinkError
  5115. pub fn aya::programs::xdp::XdpLink::try_from(fd_link: aya::programs::links::FdLink) -> core::result::Result<Self, Self::Error>
  5116. impl core::convert::TryFrom<aya::programs::xdp::XdpLink> for aya::programs::links::FdLink
  5117. pub type aya::programs::links::FdLink::Error = aya::programs::links::LinkError
  5118. pub fn aya::programs::links::FdLink::try_from(value: aya::programs::xdp::XdpLink) -> core::result::Result<Self, Self::Error>
  5119. impl core::ops::drop::Drop for aya::programs::xdp::XdpLink
  5120. pub fn aya::programs::xdp::XdpLink::drop(&mut self)
  5121. impl core::fmt::Debug for aya::programs::xdp::XdpLink
  5122. pub fn aya::programs::xdp::XdpLink::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5123. impl core::marker::Send for aya::programs::xdp::XdpLink
  5124. impl core::marker::Sync for aya::programs::xdp::XdpLink
  5125. impl core::marker::Unpin for aya::programs::xdp::XdpLink
  5126. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLink
  5127. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLink
  5128. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLink where U: core::convert::From<T>
  5129. pub fn aya::programs::xdp::XdpLink::into(self) -> U
  5130. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLink where U: core::convert::Into<T>
  5131. pub type aya::programs::xdp::XdpLink::Error = core::convert::Infallible
  5132. pub fn aya::programs::xdp::XdpLink::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5133. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLink where U: core::convert::TryFrom<T>
  5134. pub type aya::programs::xdp::XdpLink::Error = <U as core::convert::TryFrom<T>>::Error
  5135. pub fn aya::programs::xdp::XdpLink::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5136. impl<T> core::any::Any for aya::programs::xdp::XdpLink where T: 'static + core::marker::Sized
  5137. pub fn aya::programs::xdp::XdpLink::type_id(&self) -> core::any::TypeId
  5138. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLink where T: core::marker::Sized
  5139. pub fn aya::programs::xdp::XdpLink::borrow(&self) -> &T
  5140. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLink where T: core::marker::Sized
  5141. pub fn aya::programs::xdp::XdpLink::borrow_mut(&mut self) -> &mut T
  5142. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLink
  5143. pub fn aya::programs::xdp::XdpLink::from(t: T) -> T
  5144. pub struct aya::programs::xdp::XdpLinkId(_)
  5145. impl core::cmp::Eq for aya::programs::xdp::XdpLinkId
  5146. impl core::cmp::PartialEq<aya::programs::xdp::XdpLinkId> for aya::programs::xdp::XdpLinkId
  5147. pub fn aya::programs::xdp::XdpLinkId::eq(&self, other: &aya::programs::xdp::XdpLinkId) -> bool
  5148. impl core::fmt::Debug for aya::programs::xdp::XdpLinkId
  5149. pub fn aya::programs::xdp::XdpLinkId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5150. impl core::hash::Hash for aya::programs::xdp::XdpLinkId
  5151. pub fn aya::programs::xdp::XdpLinkId::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5152. impl core::marker::StructuralEq for aya::programs::xdp::XdpLinkId
  5153. impl core::marker::StructuralPartialEq for aya::programs::xdp::XdpLinkId
  5154. impl core::marker::Send for aya::programs::xdp::XdpLinkId
  5155. impl core::marker::Sync for aya::programs::xdp::XdpLinkId
  5156. impl core::marker::Unpin for aya::programs::xdp::XdpLinkId
  5157. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpLinkId
  5158. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpLinkId
  5159. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpLinkId where U: core::convert::From<T>
  5160. pub fn aya::programs::xdp::XdpLinkId::into(self) -> U
  5161. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpLinkId where U: core::convert::Into<T>
  5162. pub type aya::programs::xdp::XdpLinkId::Error = core::convert::Infallible
  5163. pub fn aya::programs::xdp::XdpLinkId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5164. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpLinkId where U: core::convert::TryFrom<T>
  5165. pub type aya::programs::xdp::XdpLinkId::Error = <U as core::convert::TryFrom<T>>::Error
  5166. pub fn aya::programs::xdp::XdpLinkId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5167. impl<T> core::any::Any for aya::programs::xdp::XdpLinkId where T: 'static + core::marker::Sized
  5168. pub fn aya::programs::xdp::XdpLinkId::type_id(&self) -> core::any::TypeId
  5169. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpLinkId where T: core::marker::Sized
  5170. pub fn aya::programs::xdp::XdpLinkId::borrow(&self) -> &T
  5171. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpLinkId where T: core::marker::Sized
  5172. pub fn aya::programs::xdp::XdpLinkId::borrow_mut(&mut self) -> &mut T
  5173. impl<T> core::convert::From<T> for aya::programs::xdp::XdpLinkId
  5174. pub fn aya::programs::xdp::XdpLinkId::from(t: T) -> T
  5175. pub enum aya::programs::CgroupSkbAttachType
  5176. pub aya::programs::CgroupSkbAttachType::Egress
  5177. pub aya::programs::CgroupSkbAttachType::Ingress
  5178. impl core::clone::Clone for aya::programs::cgroup_skb::CgroupSkbAttachType
  5179. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone(&self) -> aya::programs::cgroup_skb::CgroupSkbAttachType
  5180. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkbAttachType
  5181. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5182. impl core::marker::Copy for aya::programs::cgroup_skb::CgroupSkbAttachType
  5183. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkbAttachType
  5184. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkbAttachType
  5185. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkbAttachType
  5186. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  5187. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkbAttachType
  5188. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::From<T>
  5189. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::into(self) -> U
  5190. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::Into<T>
  5191. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = core::convert::Infallible
  5192. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5193. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkbAttachType where U: core::convert::TryFrom<T>
  5194. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  5195. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5196. impl<T> alloc::borrow::ToOwned for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::clone::Clone
  5197. pub type aya::programs::cgroup_skb::CgroupSkbAttachType::Owned = T
  5198. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::clone_into(&self, target: &mut T)
  5199. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::to_owned(&self) -> T
  5200. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkbAttachType where T: 'static + core::marker::Sized
  5201. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::type_id(&self) -> core::any::TypeId
  5202. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized
  5203. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow(&self) -> &T
  5204. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkbAttachType where T: core::marker::Sized
  5205. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::borrow_mut(&mut self) -> &mut T
  5206. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkbAttachType
  5207. pub fn aya::programs::cgroup_skb::CgroupSkbAttachType::from(t: T) -> T
  5208. pub enum aya::programs::ExtensionError
  5209. pub aya::programs::ExtensionError::NoBTF
  5210. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  5211. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  5212. impl core::error::Error for aya::programs::extension::ExtensionError
  5213. impl core::fmt::Display for aya::programs::extension::ExtensionError
  5214. pub fn aya::programs::extension::ExtensionError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5215. impl core::fmt::Debug for aya::programs::extension::ExtensionError
  5216. pub fn aya::programs::extension::ExtensionError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5217. impl core::marker::Send for aya::programs::extension::ExtensionError
  5218. impl core::marker::Sync for aya::programs::extension::ExtensionError
  5219. impl core::marker::Unpin for aya::programs::extension::ExtensionError
  5220. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::ExtensionError
  5221. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::ExtensionError
  5222. impl<T, U> core::convert::Into<U> for aya::programs::extension::ExtensionError where U: core::convert::From<T>
  5223. pub fn aya::programs::extension::ExtensionError::into(self) -> U
  5224. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::ExtensionError where U: core::convert::Into<T>
  5225. pub type aya::programs::extension::ExtensionError::Error = core::convert::Infallible
  5226. pub fn aya::programs::extension::ExtensionError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5227. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::ExtensionError where U: core::convert::TryFrom<T>
  5228. pub type aya::programs::extension::ExtensionError::Error = <U as core::convert::TryFrom<T>>::Error
  5229. pub fn aya::programs::extension::ExtensionError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5230. impl<T> alloc::string::ToString for aya::programs::extension::ExtensionError where T: core::fmt::Display + core::marker::Sized
  5231. pub fn aya::programs::extension::ExtensionError::to_string(&self) -> alloc::string::String
  5232. impl<T> core::any::Any for aya::programs::extension::ExtensionError where T: 'static + core::marker::Sized
  5233. pub fn aya::programs::extension::ExtensionError::type_id(&self) -> core::any::TypeId
  5234. impl<T> core::borrow::Borrow<T> for aya::programs::extension::ExtensionError where T: core::marker::Sized
  5235. pub fn aya::programs::extension::ExtensionError::borrow(&self) -> &T
  5236. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::ExtensionError where T: core::marker::Sized
  5237. pub fn aya::programs::extension::ExtensionError::borrow_mut(&mut self) -> &mut T
  5238. impl<T> core::convert::From<T> for aya::programs::extension::ExtensionError
  5239. pub fn aya::programs::extension::ExtensionError::from(t: T) -> T
  5240. pub enum aya::programs::KProbeError
  5241. pub aya::programs::KProbeError::FileError
  5242. pub aya::programs::KProbeError::FileError::filename: std::path::PathBuf
  5243. pub aya::programs::KProbeError::FileError::io_error: std::io::error::Error
  5244. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  5245. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  5246. impl core::error::Error for aya::programs::kprobe::KProbeError
  5247. pub fn aya::programs::kprobe::KProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5248. impl core::fmt::Display for aya::programs::kprobe::KProbeError
  5249. pub fn aya::programs::kprobe::KProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5250. impl core::fmt::Debug for aya::programs::kprobe::KProbeError
  5251. pub fn aya::programs::kprobe::KProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5252. impl core::marker::Send for aya::programs::kprobe::KProbeError
  5253. impl core::marker::Sync for aya::programs::kprobe::KProbeError
  5254. impl core::marker::Unpin for aya::programs::kprobe::KProbeError
  5255. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbeError
  5256. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbeError
  5257. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbeError where U: core::convert::From<T>
  5258. pub fn aya::programs::kprobe::KProbeError::into(self) -> U
  5259. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbeError where U: core::convert::Into<T>
  5260. pub type aya::programs::kprobe::KProbeError::Error = core::convert::Infallible
  5261. pub fn aya::programs::kprobe::KProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5262. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbeError where U: core::convert::TryFrom<T>
  5263. pub type aya::programs::kprobe::KProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  5264. pub fn aya::programs::kprobe::KProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5265. impl<T> alloc::string::ToString for aya::programs::kprobe::KProbeError where T: core::fmt::Display + core::marker::Sized
  5266. pub fn aya::programs::kprobe::KProbeError::to_string(&self) -> alloc::string::String
  5267. impl<T> core::any::Any for aya::programs::kprobe::KProbeError where T: 'static + core::marker::Sized
  5268. pub fn aya::programs::kprobe::KProbeError::type_id(&self) -> core::any::TypeId
  5269. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbeError where T: core::marker::Sized
  5270. pub fn aya::programs::kprobe::KProbeError::borrow(&self) -> &T
  5271. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbeError where T: core::marker::Sized
  5272. pub fn aya::programs::kprobe::KProbeError::borrow_mut(&mut self) -> &mut T
  5273. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbeError
  5274. pub fn aya::programs::kprobe::KProbeError::from(t: T) -> T
  5275. pub enum aya::programs::PerfEventScope
  5276. pub aya::programs::PerfEventScope::AllProcessesOneCpu
  5277. pub aya::programs::PerfEventScope::AllProcessesOneCpu::cpu: u32
  5278. pub aya::programs::PerfEventScope::CallingProcessAnyCpu
  5279. pub aya::programs::PerfEventScope::CallingProcessOneCpu
  5280. pub aya::programs::PerfEventScope::CallingProcessOneCpu::cpu: u32
  5281. pub aya::programs::PerfEventScope::OneProcessAnyCpu
  5282. pub aya::programs::PerfEventScope::OneProcessAnyCpu::pid: u32
  5283. pub aya::programs::PerfEventScope::OneProcessOneCpu
  5284. pub aya::programs::PerfEventScope::OneProcessOneCpu::cpu: u32
  5285. pub aya::programs::PerfEventScope::OneProcessOneCpu::pid: u32
  5286. impl core::clone::Clone for aya::programs::perf_event::PerfEventScope
  5287. pub fn aya::programs::perf_event::PerfEventScope::clone(&self) -> aya::programs::perf_event::PerfEventScope
  5288. impl core::fmt::Debug for aya::programs::perf_event::PerfEventScope
  5289. pub fn aya::programs::perf_event::PerfEventScope::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5290. impl core::marker::Send for aya::programs::perf_event::PerfEventScope
  5291. impl core::marker::Sync for aya::programs::perf_event::PerfEventScope
  5292. impl core::marker::Unpin for aya::programs::perf_event::PerfEventScope
  5293. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEventScope
  5294. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEventScope
  5295. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::From<T>
  5296. pub fn aya::programs::perf_event::PerfEventScope::into(self) -> U
  5297. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::Into<T>
  5298. pub type aya::programs::perf_event::PerfEventScope::Error = core::convert::Infallible
  5299. pub fn aya::programs::perf_event::PerfEventScope::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5300. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEventScope where U: core::convert::TryFrom<T>
  5301. pub type aya::programs::perf_event::PerfEventScope::Error = <U as core::convert::TryFrom<T>>::Error
  5302. pub fn aya::programs::perf_event::PerfEventScope::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5303. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfEventScope where T: core::clone::Clone
  5304. pub type aya::programs::perf_event::PerfEventScope::Owned = T
  5305. pub fn aya::programs::perf_event::PerfEventScope::clone_into(&self, target: &mut T)
  5306. pub fn aya::programs::perf_event::PerfEventScope::to_owned(&self) -> T
  5307. impl<T> core::any::Any for aya::programs::perf_event::PerfEventScope where T: 'static + core::marker::Sized
  5308. pub fn aya::programs::perf_event::PerfEventScope::type_id(&self) -> core::any::TypeId
  5309. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized
  5310. pub fn aya::programs::perf_event::PerfEventScope::borrow(&self) -> &T
  5311. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEventScope where T: core::marker::Sized
  5312. pub fn aya::programs::perf_event::PerfEventScope::borrow_mut(&mut self) -> &mut T
  5313. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEventScope
  5314. pub fn aya::programs::perf_event::PerfEventScope::from(t: T) -> T
  5315. #[repr(u32)] pub enum aya::programs::PerfTypeId
  5316. pub aya::programs::PerfTypeId::Breakpoint = 5
  5317. pub aya::programs::PerfTypeId::Hardware = 0
  5318. pub aya::programs::PerfTypeId::HwCache = 3
  5319. pub aya::programs::PerfTypeId::Raw = 4
  5320. pub aya::programs::PerfTypeId::Software = 1
  5321. pub aya::programs::PerfTypeId::TracePoint = 2
  5322. impl core::clone::Clone for aya::programs::perf_event::PerfTypeId
  5323. pub fn aya::programs::perf_event::PerfTypeId::clone(&self) -> aya::programs::perf_event::PerfTypeId
  5324. impl core::fmt::Debug for aya::programs::perf_event::PerfTypeId
  5325. pub fn aya::programs::perf_event::PerfTypeId::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5326. impl core::marker::Send for aya::programs::perf_event::PerfTypeId
  5327. impl core::marker::Sync for aya::programs::perf_event::PerfTypeId
  5328. impl core::marker::Unpin for aya::programs::perf_event::PerfTypeId
  5329. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfTypeId
  5330. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfTypeId
  5331. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::From<T>
  5332. pub fn aya::programs::perf_event::PerfTypeId::into(self) -> U
  5333. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::Into<T>
  5334. pub type aya::programs::perf_event::PerfTypeId::Error = core::convert::Infallible
  5335. pub fn aya::programs::perf_event::PerfTypeId::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5336. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfTypeId where U: core::convert::TryFrom<T>
  5337. pub type aya::programs::perf_event::PerfTypeId::Error = <U as core::convert::TryFrom<T>>::Error
  5338. pub fn aya::programs::perf_event::PerfTypeId::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5339. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::PerfTypeId where T: core::clone::Clone
  5340. pub type aya::programs::perf_event::PerfTypeId::Owned = T
  5341. pub fn aya::programs::perf_event::PerfTypeId::clone_into(&self, target: &mut T)
  5342. pub fn aya::programs::perf_event::PerfTypeId::to_owned(&self) -> T
  5343. impl<T> core::any::Any for aya::programs::perf_event::PerfTypeId where T: 'static + core::marker::Sized
  5344. pub fn aya::programs::perf_event::PerfTypeId::type_id(&self) -> core::any::TypeId
  5345. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized
  5346. pub fn aya::programs::perf_event::PerfTypeId::borrow(&self) -> &T
  5347. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfTypeId where T: core::marker::Sized
  5348. pub fn aya::programs::perf_event::PerfTypeId::borrow_mut(&mut self) -> &mut T
  5349. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfTypeId
  5350. pub fn aya::programs::perf_event::PerfTypeId::from(t: T) -> T
  5351. pub enum aya::programs::ProbeKind
  5352. pub aya::programs::ProbeKind::KProbe
  5353. pub aya::programs::ProbeKind::KRetProbe
  5354. pub aya::programs::ProbeKind::UProbe
  5355. pub aya::programs::ProbeKind::URetProbe
  5356. impl core::clone::Clone for aya::programs::ProbeKind
  5357. pub fn aya::programs::ProbeKind::clone(&self) -> aya::programs::ProbeKind
  5358. impl core::fmt::Debug for aya::programs::ProbeKind
  5359. pub fn aya::programs::ProbeKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5360. impl core::marker::Copy for aya::programs::ProbeKind
  5361. impl core::marker::Send for aya::programs::ProbeKind
  5362. impl core::marker::Sync for aya::programs::ProbeKind
  5363. impl core::marker::Unpin for aya::programs::ProbeKind
  5364. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProbeKind
  5365. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProbeKind
  5366. impl<T, U> core::convert::Into<U> for aya::programs::ProbeKind where U: core::convert::From<T>
  5367. pub fn aya::programs::ProbeKind::into(self) -> U
  5368. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProbeKind where U: core::convert::Into<T>
  5369. pub type aya::programs::ProbeKind::Error = core::convert::Infallible
  5370. pub fn aya::programs::ProbeKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5371. impl<T, U> core::convert::TryInto<U> for aya::programs::ProbeKind where U: core::convert::TryFrom<T>
  5372. pub type aya::programs::ProbeKind::Error = <U as core::convert::TryFrom<T>>::Error
  5373. pub fn aya::programs::ProbeKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5374. impl<T> alloc::borrow::ToOwned for aya::programs::ProbeKind where T: core::clone::Clone
  5375. pub type aya::programs::ProbeKind::Owned = T
  5376. pub fn aya::programs::ProbeKind::clone_into(&self, target: &mut T)
  5377. pub fn aya::programs::ProbeKind::to_owned(&self) -> T
  5378. impl<T> core::any::Any for aya::programs::ProbeKind where T: 'static + core::marker::Sized
  5379. pub fn aya::programs::ProbeKind::type_id(&self) -> core::any::TypeId
  5380. impl<T> core::borrow::Borrow<T> for aya::programs::ProbeKind where T: core::marker::Sized
  5381. pub fn aya::programs::ProbeKind::borrow(&self) -> &T
  5382. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProbeKind where T: core::marker::Sized
  5383. pub fn aya::programs::ProbeKind::borrow_mut(&mut self) -> &mut T
  5384. impl<T> core::convert::From<T> for aya::programs::ProbeKind
  5385. pub fn aya::programs::ProbeKind::from(t: T) -> T
  5386. pub enum aya::programs::Program
  5387. pub aya::programs::Program::BtfTracePoint(aya::programs::tp_btf::BtfTracePoint)
  5388. pub aya::programs::Program::CgroupDevice(aya::programs::cgroup_device::CgroupDevice)
  5389. pub aya::programs::Program::CgroupSkb(aya::programs::cgroup_skb::CgroupSkb)
  5390. pub aya::programs::Program::CgroupSock(aya::programs::cgroup_sock::CgroupSock)
  5391. pub aya::programs::Program::CgroupSockAddr(aya::programs::cgroup_sock_addr::CgroupSockAddr)
  5392. pub aya::programs::Program::CgroupSockopt(aya::programs::cgroup_sockopt::CgroupSockopt)
  5393. pub aya::programs::Program::CgroupSysctl(aya::programs::cgroup_sysctl::CgroupSysctl)
  5394. pub aya::programs::Program::Extension(aya::programs::extension::Extension)
  5395. pub aya::programs::Program::FEntry(aya::programs::fentry::FEntry)
  5396. pub aya::programs::Program::FExit(aya::programs::fexit::FExit)
  5397. pub aya::programs::Program::KProbe(aya::programs::kprobe::KProbe)
  5398. pub aya::programs::Program::LircMode2(aya::programs::lirc_mode2::LircMode2)
  5399. pub aya::programs::Program::Lsm(aya::programs::lsm::Lsm)
  5400. pub aya::programs::Program::PerfEvent(aya::programs::perf_event::PerfEvent)
  5401. pub aya::programs::Program::RawTracePoint(aya::programs::RawTracePoint)
  5402. pub aya::programs::Program::SchedClassifier(aya::programs::tc::SchedClassifier)
  5403. pub aya::programs::Program::SkLookup(aya::programs::SkLookup)
  5404. pub aya::programs::Program::SkMsg(aya::programs::SkMsg)
  5405. pub aya::programs::Program::SkSkb(aya::programs::SkSkb)
  5406. pub aya::programs::Program::SockOps(aya::programs::SockOps)
  5407. pub aya::programs::Program::SocketFilter(aya::programs::SocketFilter)
  5408. pub aya::programs::Program::TracePoint(aya::programs::trace_point::TracePoint)
  5409. pub aya::programs::Program::UProbe(aya::programs::uprobe::UProbe)
  5410. pub aya::programs::Program::Xdp(aya::programs::xdp::Xdp)
  5411. impl aya::programs::Program
  5412. pub fn aya::programs::Program::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5413. pub fn aya::programs::Program::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5414. pub fn aya::programs::Program::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5415. pub fn aya::programs::Program::prog_type(&self) -> aya_obj::generated::linux_bindings_x86_64::bpf_prog_type
  5416. pub fn aya::programs::Program::unload(self) -> core::result::Result<(), aya::programs::ProgramError>
  5417. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::RawTracePoint
  5418. pub type &'a aya::programs::RawTracePoint::Error = aya::programs::ProgramError
  5419. pub fn &'a aya::programs::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::RawTracePoint, aya::programs::ProgramError>
  5420. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkLookup
  5421. pub type &'a aya::programs::SkLookup::Error = aya::programs::ProgramError
  5422. pub fn &'a aya::programs::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkLookup, aya::programs::ProgramError>
  5423. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkMsg
  5424. pub type &'a aya::programs::SkMsg::Error = aya::programs::ProgramError
  5425. pub fn &'a aya::programs::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkMsg, aya::programs::ProgramError>
  5426. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkSkb
  5427. pub type &'a aya::programs::SkSkb::Error = aya::programs::ProgramError
  5428. pub fn &'a aya::programs::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkSkb, aya::programs::ProgramError>
  5429. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SockOps
  5430. pub type &'a aya::programs::SockOps::Error = aya::programs::ProgramError
  5431. pub fn &'a aya::programs::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SockOps, aya::programs::ProgramError>
  5432. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SocketFilter
  5433. pub type &'a aya::programs::SocketFilter::Error = aya::programs::ProgramError
  5434. pub fn &'a aya::programs::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SocketFilter, aya::programs::ProgramError>
  5435. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  5436. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  5437. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  5438. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  5439. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  5440. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  5441. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  5442. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  5443. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  5444. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  5445. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  5446. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  5447. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  5448. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  5449. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  5450. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  5451. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  5452. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  5453. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  5454. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  5455. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  5456. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  5457. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  5458. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  5459. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  5460. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  5461. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  5462. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  5463. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  5464. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  5465. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  5466. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  5467. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  5468. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  5469. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  5470. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  5471. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  5472. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5473. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5474. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  5475. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  5476. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  5477. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  5478. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  5479. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  5480. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  5481. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  5482. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  5483. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  5484. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  5485. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  5486. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  5487. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  5488. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  5489. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::RawTracePoint
  5490. pub type &'a mut aya::programs::RawTracePoint::Error = aya::programs::ProgramError
  5491. pub fn &'a mut aya::programs::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::RawTracePoint, aya::programs::ProgramError>
  5492. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkLookup
  5493. pub type &'a mut aya::programs::SkLookup::Error = aya::programs::ProgramError
  5494. pub fn &'a mut aya::programs::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkLookup, aya::programs::ProgramError>
  5495. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkMsg
  5496. pub type &'a mut aya::programs::SkMsg::Error = aya::programs::ProgramError
  5497. pub fn &'a mut aya::programs::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkMsg, aya::programs::ProgramError>
  5498. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkSkb
  5499. pub type &'a mut aya::programs::SkSkb::Error = aya::programs::ProgramError
  5500. pub fn &'a mut aya::programs::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkSkb, aya::programs::ProgramError>
  5501. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SockOps
  5502. pub type &'a mut aya::programs::SockOps::Error = aya::programs::ProgramError
  5503. pub fn &'a mut aya::programs::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SockOps, aya::programs::ProgramError>
  5504. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SocketFilter
  5505. pub type &'a mut aya::programs::SocketFilter::Error = aya::programs::ProgramError
  5506. pub fn &'a mut aya::programs::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SocketFilter, aya::programs::ProgramError>
  5507. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  5508. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  5509. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  5510. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  5511. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  5512. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  5513. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  5514. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  5515. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  5516. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  5517. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  5518. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  5519. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  5520. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  5521. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  5522. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  5523. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  5524. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  5525. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  5526. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  5527. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  5528. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  5529. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  5530. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  5531. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  5532. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  5533. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  5534. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  5535. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  5536. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  5537. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  5538. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  5539. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  5540. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  5541. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  5542. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  5543. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  5544. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  5545. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  5546. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  5547. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  5548. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  5549. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  5550. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  5551. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  5552. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  5553. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  5554. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  5555. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  5556. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  5557. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  5558. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  5559. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  5560. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  5561. impl core::fmt::Debug for aya::programs::Program
  5562. pub fn aya::programs::Program::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5563. impl core::marker::Send for aya::programs::Program
  5564. impl core::marker::Sync for aya::programs::Program
  5565. impl core::marker::Unpin for aya::programs::Program
  5566. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::Program
  5567. impl core::panic::unwind_safe::UnwindSafe for aya::programs::Program
  5568. impl<T, U> core::convert::Into<U> for aya::programs::Program where U: core::convert::From<T>
  5569. pub fn aya::programs::Program::into(self) -> U
  5570. impl<T, U> core::convert::TryFrom<U> for aya::programs::Program where U: core::convert::Into<T>
  5571. pub type aya::programs::Program::Error = core::convert::Infallible
  5572. pub fn aya::programs::Program::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5573. impl<T, U> core::convert::TryInto<U> for aya::programs::Program where U: core::convert::TryFrom<T>
  5574. pub type aya::programs::Program::Error = <U as core::convert::TryFrom<T>>::Error
  5575. pub fn aya::programs::Program::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5576. impl<T> core::any::Any for aya::programs::Program where T: 'static + core::marker::Sized
  5577. pub fn aya::programs::Program::type_id(&self) -> core::any::TypeId
  5578. impl<T> core::borrow::Borrow<T> for aya::programs::Program where T: core::marker::Sized
  5579. pub fn aya::programs::Program::borrow(&self) -> &T
  5580. impl<T> core::borrow::BorrowMut<T> for aya::programs::Program where T: core::marker::Sized
  5581. pub fn aya::programs::Program::borrow_mut(&mut self) -> &mut T
  5582. impl<T> core::convert::From<T> for aya::programs::Program
  5583. pub fn aya::programs::Program::from(t: T) -> T
  5584. pub enum aya::programs::ProgramError
  5585. pub aya::programs::ProgramError::AlreadyAttached
  5586. pub aya::programs::ProgramError::AlreadyLoaded
  5587. pub aya::programs::ProgramError::Btf(aya_obj::btf::btf::BtfError)
  5588. pub aya::programs::ProgramError::ExtensionError(aya::programs::extension::ExtensionError)
  5589. pub aya::programs::ProgramError::IOError(std::io::error::Error)
  5590. pub aya::programs::ProgramError::InvalidName
  5591. pub aya::programs::ProgramError::InvalidName::name: alloc::string::String
  5592. pub aya::programs::ProgramError::KProbeError(aya::programs::kprobe::KProbeError)
  5593. pub aya::programs::ProgramError::LoadError
  5594. pub aya::programs::ProgramError::LoadError::io_error: std::io::error::Error
  5595. pub aya::programs::ProgramError::LoadError::verifier_log: aya_obj::VerifierLog
  5596. pub aya::programs::ProgramError::MapError(aya::maps::MapError)
  5597. pub aya::programs::ProgramError::NotAttached
  5598. pub aya::programs::ProgramError::NotLoaded
  5599. pub aya::programs::ProgramError::SocketFilterError(aya::programs::SocketFilterError)
  5600. pub aya::programs::ProgramError::SyscallError(crate::sys::SyscallError)
  5601. pub aya::programs::ProgramError::TcError(aya::programs::tc::TcError)
  5602. pub aya::programs::ProgramError::TracePointError(aya::programs::trace_point::TracePointError)
  5603. pub aya::programs::ProgramError::UProbeError(aya::programs::uprobe::UProbeError)
  5604. pub aya::programs::ProgramError::UnexpectedProgramType
  5605. pub aya::programs::ProgramError::UnknownInterface
  5606. pub aya::programs::ProgramError::UnknownInterface::name: alloc::string::String
  5607. pub aya::programs::ProgramError::XdpError(aya::programs::xdp::XdpError)
  5608. impl core::convert::From<aya::maps::MapError> for aya::programs::ProgramError
  5609. pub fn aya::programs::ProgramError::from(source: aya::maps::MapError) -> Self
  5610. impl core::convert::From<aya::programs::ProgramError> for aya::BpfError
  5611. pub fn aya::BpfError::from(source: aya::programs::ProgramError) -> Self
  5612. impl core::convert::From<aya::programs::SocketFilterError> for aya::programs::ProgramError
  5613. pub fn aya::programs::ProgramError::from(source: aya::programs::SocketFilterError) -> Self
  5614. impl core::convert::From<aya::programs::extension::ExtensionError> for aya::programs::ProgramError
  5615. pub fn aya::programs::ProgramError::from(source: aya::programs::extension::ExtensionError) -> Self
  5616. impl core::convert::From<aya::programs::kprobe::KProbeError> for aya::programs::ProgramError
  5617. pub fn aya::programs::ProgramError::from(source: aya::programs::kprobe::KProbeError) -> Self
  5618. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  5619. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  5620. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  5621. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  5622. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  5623. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  5624. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  5625. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  5626. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::programs::ProgramError
  5627. pub fn aya::programs::ProgramError::from(source: aya_obj::btf::btf::BtfError) -> Self
  5628. impl core::convert::From<std::io::error::Error> for aya::programs::ProgramError
  5629. pub fn aya::programs::ProgramError::from(source: std::io::error::Error) -> Self
  5630. impl core::error::Error for aya::programs::ProgramError
  5631. pub fn aya::programs::ProgramError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5632. impl core::fmt::Display for aya::programs::ProgramError
  5633. pub fn aya::programs::ProgramError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5634. impl core::fmt::Debug for aya::programs::ProgramError
  5635. pub fn aya::programs::ProgramError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5636. impl core::marker::Send for aya::programs::ProgramError
  5637. impl core::marker::Sync for aya::programs::ProgramError
  5638. impl core::marker::Unpin for aya::programs::ProgramError
  5639. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramError
  5640. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramError
  5641. impl<T, U> core::convert::Into<U> for aya::programs::ProgramError where U: core::convert::From<T>
  5642. pub fn aya::programs::ProgramError::into(self) -> U
  5643. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramError where U: core::convert::Into<T>
  5644. pub type aya::programs::ProgramError::Error = core::convert::Infallible
  5645. pub fn aya::programs::ProgramError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5646. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramError where U: core::convert::TryFrom<T>
  5647. pub type aya::programs::ProgramError::Error = <U as core::convert::TryFrom<T>>::Error
  5648. pub fn aya::programs::ProgramError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5649. impl<T> alloc::string::ToString for aya::programs::ProgramError where T: core::fmt::Display + core::marker::Sized
  5650. pub fn aya::programs::ProgramError::to_string(&self) -> alloc::string::String
  5651. impl<T> core::any::Any for aya::programs::ProgramError where T: 'static + core::marker::Sized
  5652. pub fn aya::programs::ProgramError::type_id(&self) -> core::any::TypeId
  5653. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramError where T: core::marker::Sized
  5654. pub fn aya::programs::ProgramError::borrow(&self) -> &T
  5655. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramError where T: core::marker::Sized
  5656. pub fn aya::programs::ProgramError::borrow_mut(&mut self) -> &mut T
  5657. impl<T> core::convert::From<T> for aya::programs::ProgramError
  5658. pub fn aya::programs::ProgramError::from(t: T) -> T
  5659. pub enum aya::programs::SamplePolicy
  5660. pub aya::programs::SamplePolicy::Frequency(u64)
  5661. pub aya::programs::SamplePolicy::Period(u64)
  5662. impl core::clone::Clone for aya::programs::perf_event::SamplePolicy
  5663. pub fn aya::programs::perf_event::SamplePolicy::clone(&self) -> aya::programs::perf_event::SamplePolicy
  5664. impl core::fmt::Debug for aya::programs::perf_event::SamplePolicy
  5665. pub fn aya::programs::perf_event::SamplePolicy::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5666. impl core::marker::Send for aya::programs::perf_event::SamplePolicy
  5667. impl core::marker::Sync for aya::programs::perf_event::SamplePolicy
  5668. impl core::marker::Unpin for aya::programs::perf_event::SamplePolicy
  5669. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::SamplePolicy
  5670. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::SamplePolicy
  5671. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::From<T>
  5672. pub fn aya::programs::perf_event::SamplePolicy::into(self) -> U
  5673. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::Into<T>
  5674. pub type aya::programs::perf_event::SamplePolicy::Error = core::convert::Infallible
  5675. pub fn aya::programs::perf_event::SamplePolicy::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5676. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::SamplePolicy where U: core::convert::TryFrom<T>
  5677. pub type aya::programs::perf_event::SamplePolicy::Error = <U as core::convert::TryFrom<T>>::Error
  5678. pub fn aya::programs::perf_event::SamplePolicy::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5679. impl<T> alloc::borrow::ToOwned for aya::programs::perf_event::SamplePolicy where T: core::clone::Clone
  5680. pub type aya::programs::perf_event::SamplePolicy::Owned = T
  5681. pub fn aya::programs::perf_event::SamplePolicy::clone_into(&self, target: &mut T)
  5682. pub fn aya::programs::perf_event::SamplePolicy::to_owned(&self) -> T
  5683. impl<T> core::any::Any for aya::programs::perf_event::SamplePolicy where T: 'static + core::marker::Sized
  5684. pub fn aya::programs::perf_event::SamplePolicy::type_id(&self) -> core::any::TypeId
  5685. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized
  5686. pub fn aya::programs::perf_event::SamplePolicy::borrow(&self) -> &T
  5687. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::SamplePolicy where T: core::marker::Sized
  5688. pub fn aya::programs::perf_event::SamplePolicy::borrow_mut(&mut self) -> &mut T
  5689. impl<T> core::convert::From<T> for aya::programs::perf_event::SamplePolicy
  5690. pub fn aya::programs::perf_event::SamplePolicy::from(t: T) -> T
  5691. pub enum aya::programs::SkSkbKind
  5692. pub aya::programs::SkSkbKind::StreamParser
  5693. pub aya::programs::SkSkbKind::StreamVerdict
  5694. impl core::clone::Clone for aya::programs::SkSkbKind
  5695. pub fn aya::programs::SkSkbKind::clone(&self) -> aya::programs::SkSkbKind
  5696. impl core::fmt::Debug for aya::programs::SkSkbKind
  5697. pub fn aya::programs::SkSkbKind::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5698. impl core::marker::Copy for aya::programs::SkSkbKind
  5699. impl core::marker::Send for aya::programs::SkSkbKind
  5700. impl core::marker::Sync for aya::programs::SkSkbKind
  5701. impl core::marker::Unpin for aya::programs::SkSkbKind
  5702. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkSkbKind
  5703. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkSkbKind
  5704. impl<T, U> core::convert::Into<U> for aya::programs::SkSkbKind where U: core::convert::From<T>
  5705. pub fn aya::programs::SkSkbKind::into(self) -> U
  5706. impl<T, U> core::convert::TryFrom<U> for aya::programs::SkSkbKind where U: core::convert::Into<T>
  5707. pub type aya::programs::SkSkbKind::Error = core::convert::Infallible
  5708. pub fn aya::programs::SkSkbKind::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5709. impl<T, U> core::convert::TryInto<U> for aya::programs::SkSkbKind where U: core::convert::TryFrom<T>
  5710. pub type aya::programs::SkSkbKind::Error = <U as core::convert::TryFrom<T>>::Error
  5711. pub fn aya::programs::SkSkbKind::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5712. impl<T> alloc::borrow::ToOwned for aya::programs::SkSkbKind where T: core::clone::Clone
  5713. pub type aya::programs::SkSkbKind::Owned = T
  5714. pub fn aya::programs::SkSkbKind::clone_into(&self, target: &mut T)
  5715. pub fn aya::programs::SkSkbKind::to_owned(&self) -> T
  5716. impl<T> core::any::Any for aya::programs::SkSkbKind where T: 'static + core::marker::Sized
  5717. pub fn aya::programs::SkSkbKind::type_id(&self) -> core::any::TypeId
  5718. impl<T> core::borrow::Borrow<T> for aya::programs::SkSkbKind where T: core::marker::Sized
  5719. pub fn aya::programs::SkSkbKind::borrow(&self) -> &T
  5720. impl<T> core::borrow::BorrowMut<T> for aya::programs::SkSkbKind where T: core::marker::Sized
  5721. pub fn aya::programs::SkSkbKind::borrow_mut(&mut self) -> &mut T
  5722. impl<T> core::convert::From<T> for aya::programs::SkSkbKind
  5723. pub fn aya::programs::SkSkbKind::from(t: T) -> T
  5724. pub enum aya::programs::SocketFilterError
  5725. pub aya::programs::SocketFilterError::SoAttachBpfError
  5726. pub aya::programs::SocketFilterError::SoAttachBpfError::io_error: std::io::error::Error
  5727. impl core::convert::From<aya::programs::SocketFilterError> for aya::programs::ProgramError
  5728. pub fn aya::programs::ProgramError::from(source: aya::programs::SocketFilterError) -> Self
  5729. impl core::error::Error for aya::programs::SocketFilterError
  5730. pub fn aya::programs::SocketFilterError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5731. impl core::fmt::Display for aya::programs::SocketFilterError
  5732. pub fn aya::programs::SocketFilterError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5733. impl core::fmt::Debug for aya::programs::SocketFilterError
  5734. pub fn aya::programs::SocketFilterError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5735. impl core::marker::Send for aya::programs::SocketFilterError
  5736. impl core::marker::Sync for aya::programs::SocketFilterError
  5737. impl core::marker::Unpin for aya::programs::SocketFilterError
  5738. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::SocketFilterError
  5739. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::SocketFilterError
  5740. impl<T, U> core::convert::Into<U> for aya::programs::SocketFilterError where U: core::convert::From<T>
  5741. pub fn aya::programs::SocketFilterError::into(self) -> U
  5742. impl<T, U> core::convert::TryFrom<U> for aya::programs::SocketFilterError where U: core::convert::Into<T>
  5743. pub type aya::programs::SocketFilterError::Error = core::convert::Infallible
  5744. pub fn aya::programs::SocketFilterError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5745. impl<T, U> core::convert::TryInto<U> for aya::programs::SocketFilterError where U: core::convert::TryFrom<T>
  5746. pub type aya::programs::SocketFilterError::Error = <U as core::convert::TryFrom<T>>::Error
  5747. pub fn aya::programs::SocketFilterError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5748. impl<T> alloc::string::ToString for aya::programs::SocketFilterError where T: core::fmt::Display + core::marker::Sized
  5749. pub fn aya::programs::SocketFilterError::to_string(&self) -> alloc::string::String
  5750. impl<T> core::any::Any for aya::programs::SocketFilterError where T: 'static + core::marker::Sized
  5751. pub fn aya::programs::SocketFilterError::type_id(&self) -> core::any::TypeId
  5752. impl<T> core::borrow::Borrow<T> for aya::programs::SocketFilterError where T: core::marker::Sized
  5753. pub fn aya::programs::SocketFilterError::borrow(&self) -> &T
  5754. impl<T> core::borrow::BorrowMut<T> for aya::programs::SocketFilterError where T: core::marker::Sized
  5755. pub fn aya::programs::SocketFilterError::borrow_mut(&mut self) -> &mut T
  5756. impl<T> core::convert::From<T> for aya::programs::SocketFilterError
  5757. pub fn aya::programs::SocketFilterError::from(t: T) -> T
  5758. pub enum aya::programs::TcAttachType
  5759. pub aya::programs::TcAttachType::Custom(u32)
  5760. pub aya::programs::TcAttachType::Egress
  5761. pub aya::programs::TcAttachType::Ingress
  5762. impl core::clone::Clone for aya::programs::tc::TcAttachType
  5763. pub fn aya::programs::tc::TcAttachType::clone(&self) -> aya::programs::tc::TcAttachType
  5764. impl core::cmp::Eq for aya::programs::tc::TcAttachType
  5765. impl core::cmp::PartialEq<aya::programs::tc::TcAttachType> for aya::programs::tc::TcAttachType
  5766. pub fn aya::programs::tc::TcAttachType::eq(&self, other: &aya::programs::tc::TcAttachType) -> bool
  5767. impl core::fmt::Debug for aya::programs::tc::TcAttachType
  5768. pub fn aya::programs::tc::TcAttachType::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5769. impl core::hash::Hash for aya::programs::tc::TcAttachType
  5770. pub fn aya::programs::tc::TcAttachType::hash<__H: core::hash::Hasher>(&self, state: &mut __H)
  5771. impl core::marker::Copy for aya::programs::tc::TcAttachType
  5772. impl core::marker::StructuralEq for aya::programs::tc::TcAttachType
  5773. impl core::marker::StructuralPartialEq for aya::programs::tc::TcAttachType
  5774. impl core::marker::Send for aya::programs::tc::TcAttachType
  5775. impl core::marker::Sync for aya::programs::tc::TcAttachType
  5776. impl core::marker::Unpin for aya::programs::tc::TcAttachType
  5777. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcAttachType
  5778. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcAttachType
  5779. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcAttachType where U: core::convert::From<T>
  5780. pub fn aya::programs::tc::TcAttachType::into(self) -> U
  5781. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcAttachType where U: core::convert::Into<T>
  5782. pub type aya::programs::tc::TcAttachType::Error = core::convert::Infallible
  5783. pub fn aya::programs::tc::TcAttachType::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5784. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcAttachType where U: core::convert::TryFrom<T>
  5785. pub type aya::programs::tc::TcAttachType::Error = <U as core::convert::TryFrom<T>>::Error
  5786. pub fn aya::programs::tc::TcAttachType::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5787. impl<T> alloc::borrow::ToOwned for aya::programs::tc::TcAttachType where T: core::clone::Clone
  5788. pub type aya::programs::tc::TcAttachType::Owned = T
  5789. pub fn aya::programs::tc::TcAttachType::clone_into(&self, target: &mut T)
  5790. pub fn aya::programs::tc::TcAttachType::to_owned(&self) -> T
  5791. impl<T> core::any::Any for aya::programs::tc::TcAttachType where T: 'static + core::marker::Sized
  5792. pub fn aya::programs::tc::TcAttachType::type_id(&self) -> core::any::TypeId
  5793. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcAttachType where T: core::marker::Sized
  5794. pub fn aya::programs::tc::TcAttachType::borrow(&self) -> &T
  5795. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcAttachType where T: core::marker::Sized
  5796. pub fn aya::programs::tc::TcAttachType::borrow_mut(&mut self) -> &mut T
  5797. impl<T> core::convert::From<T> for aya::programs::tc::TcAttachType
  5798. pub fn aya::programs::tc::TcAttachType::from(t: T) -> T
  5799. pub enum aya::programs::TcError
  5800. pub aya::programs::TcError::AlreadyAttached
  5801. pub aya::programs::TcError::NetlinkError
  5802. pub aya::programs::TcError::NetlinkError::io_error: std::io::error::Error
  5803. impl core::convert::From<aya::programs::tc::TcError> for aya::programs::ProgramError
  5804. pub fn aya::programs::ProgramError::from(source: aya::programs::tc::TcError) -> Self
  5805. impl core::error::Error for aya::programs::tc::TcError
  5806. pub fn aya::programs::tc::TcError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5807. impl core::fmt::Display for aya::programs::tc::TcError
  5808. pub fn aya::programs::tc::TcError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5809. impl core::fmt::Debug for aya::programs::tc::TcError
  5810. pub fn aya::programs::tc::TcError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5811. impl core::marker::Send for aya::programs::tc::TcError
  5812. impl core::marker::Sync for aya::programs::tc::TcError
  5813. impl core::marker::Unpin for aya::programs::tc::TcError
  5814. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::TcError
  5815. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::tc::TcError
  5816. impl<T, U> core::convert::Into<U> for aya::programs::tc::TcError where U: core::convert::From<T>
  5817. pub fn aya::programs::tc::TcError::into(self) -> U
  5818. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::TcError where U: core::convert::Into<T>
  5819. pub type aya::programs::tc::TcError::Error = core::convert::Infallible
  5820. pub fn aya::programs::tc::TcError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5821. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::TcError where U: core::convert::TryFrom<T>
  5822. pub type aya::programs::tc::TcError::Error = <U as core::convert::TryFrom<T>>::Error
  5823. pub fn aya::programs::tc::TcError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5824. impl<T> alloc::string::ToString for aya::programs::tc::TcError where T: core::fmt::Display + core::marker::Sized
  5825. pub fn aya::programs::tc::TcError::to_string(&self) -> alloc::string::String
  5826. impl<T> core::any::Any for aya::programs::tc::TcError where T: 'static + core::marker::Sized
  5827. pub fn aya::programs::tc::TcError::type_id(&self) -> core::any::TypeId
  5828. impl<T> core::borrow::Borrow<T> for aya::programs::tc::TcError where T: core::marker::Sized
  5829. pub fn aya::programs::tc::TcError::borrow(&self) -> &T
  5830. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::TcError where T: core::marker::Sized
  5831. pub fn aya::programs::tc::TcError::borrow_mut(&mut self) -> &mut T
  5832. impl<T> core::convert::From<T> for aya::programs::tc::TcError
  5833. pub fn aya::programs::tc::TcError::from(t: T) -> T
  5834. pub enum aya::programs::TracePointError
  5835. pub aya::programs::TracePointError::FileError
  5836. pub aya::programs::TracePointError::FileError::filename: alloc::string::String
  5837. pub aya::programs::TracePointError::FileError::io_error: std::io::error::Error
  5838. impl core::convert::From<aya::programs::trace_point::TracePointError> for aya::programs::ProgramError
  5839. pub fn aya::programs::ProgramError::from(source: aya::programs::trace_point::TracePointError) -> Self
  5840. impl core::error::Error for aya::programs::trace_point::TracePointError
  5841. pub fn aya::programs::trace_point::TracePointError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5842. impl core::fmt::Display for aya::programs::trace_point::TracePointError
  5843. pub fn aya::programs::trace_point::TracePointError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5844. impl core::fmt::Debug for aya::programs::trace_point::TracePointError
  5845. pub fn aya::programs::trace_point::TracePointError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5846. impl core::marker::Send for aya::programs::trace_point::TracePointError
  5847. impl core::marker::Sync for aya::programs::trace_point::TracePointError
  5848. impl core::marker::Unpin for aya::programs::trace_point::TracePointError
  5849. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePointError
  5850. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePointError
  5851. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePointError where U: core::convert::From<T>
  5852. pub fn aya::programs::trace_point::TracePointError::into(self) -> U
  5853. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePointError where U: core::convert::Into<T>
  5854. pub type aya::programs::trace_point::TracePointError::Error = core::convert::Infallible
  5855. pub fn aya::programs::trace_point::TracePointError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5856. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePointError where U: core::convert::TryFrom<T>
  5857. pub type aya::programs::trace_point::TracePointError::Error = <U as core::convert::TryFrom<T>>::Error
  5858. pub fn aya::programs::trace_point::TracePointError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5859. impl<T> alloc::string::ToString for aya::programs::trace_point::TracePointError where T: core::fmt::Display + core::marker::Sized
  5860. pub fn aya::programs::trace_point::TracePointError::to_string(&self) -> alloc::string::String
  5861. impl<T> core::any::Any for aya::programs::trace_point::TracePointError where T: 'static + core::marker::Sized
  5862. pub fn aya::programs::trace_point::TracePointError::type_id(&self) -> core::any::TypeId
  5863. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePointError where T: core::marker::Sized
  5864. pub fn aya::programs::trace_point::TracePointError::borrow(&self) -> &T
  5865. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePointError where T: core::marker::Sized
  5866. pub fn aya::programs::trace_point::TracePointError::borrow_mut(&mut self) -> &mut T
  5867. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePointError
  5868. pub fn aya::programs::trace_point::TracePointError::from(t: T) -> T
  5869. pub enum aya::programs::UProbeError
  5870. pub aya::programs::UProbeError::FileError
  5871. pub aya::programs::UProbeError::FileError::filename: std::path::PathBuf
  5872. pub aya::programs::UProbeError::FileError::io_error: std::io::error::Error
  5873. pub aya::programs::UProbeError::InvalidLdSoCache
  5874. pub aya::programs::UProbeError::InvalidLdSoCache::io_error: alloc::sync::Arc<std::io::error::Error>
  5875. pub aya::programs::UProbeError::InvalidTarget
  5876. pub aya::programs::UProbeError::InvalidTarget::path: std::path::PathBuf
  5877. pub aya::programs::UProbeError::SymbolError
  5878. pub aya::programs::UProbeError::SymbolError::error: alloc::boxed::Box<(dyn core::error::Error + core::marker::Send + core::marker::Sync)>
  5879. pub aya::programs::UProbeError::SymbolError::symbol: alloc::string::String
  5880. impl core::convert::From<aya::programs::uprobe::UProbeError> for aya::programs::ProgramError
  5881. pub fn aya::programs::ProgramError::from(source: aya::programs::uprobe::UProbeError) -> Self
  5882. impl core::error::Error for aya::programs::uprobe::UProbeError
  5883. pub fn aya::programs::uprobe::UProbeError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5884. impl core::fmt::Display for aya::programs::uprobe::UProbeError
  5885. pub fn aya::programs::uprobe::UProbeError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5886. impl core::fmt::Debug for aya::programs::uprobe::UProbeError
  5887. pub fn aya::programs::uprobe::UProbeError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5888. impl core::marker::Send for aya::programs::uprobe::UProbeError
  5889. impl core::marker::Sync for aya::programs::uprobe::UProbeError
  5890. impl core::marker::Unpin for aya::programs::uprobe::UProbeError
  5891. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbeError
  5892. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbeError
  5893. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbeError where U: core::convert::From<T>
  5894. pub fn aya::programs::uprobe::UProbeError::into(self) -> U
  5895. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbeError where U: core::convert::Into<T>
  5896. pub type aya::programs::uprobe::UProbeError::Error = core::convert::Infallible
  5897. pub fn aya::programs::uprobe::UProbeError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5898. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbeError where U: core::convert::TryFrom<T>
  5899. pub type aya::programs::uprobe::UProbeError::Error = <U as core::convert::TryFrom<T>>::Error
  5900. pub fn aya::programs::uprobe::UProbeError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5901. impl<T> alloc::string::ToString for aya::programs::uprobe::UProbeError where T: core::fmt::Display + core::marker::Sized
  5902. pub fn aya::programs::uprobe::UProbeError::to_string(&self) -> alloc::string::String
  5903. impl<T> core::any::Any for aya::programs::uprobe::UProbeError where T: 'static + core::marker::Sized
  5904. pub fn aya::programs::uprobe::UProbeError::type_id(&self) -> core::any::TypeId
  5905. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbeError where T: core::marker::Sized
  5906. pub fn aya::programs::uprobe::UProbeError::borrow(&self) -> &T
  5907. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbeError where T: core::marker::Sized
  5908. pub fn aya::programs::uprobe::UProbeError::borrow_mut(&mut self) -> &mut T
  5909. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbeError
  5910. pub fn aya::programs::uprobe::UProbeError::from(t: T) -> T
  5911. pub enum aya::programs::XdpError
  5912. pub aya::programs::XdpError::NetlinkError
  5913. pub aya::programs::XdpError::NetlinkError::io_error: std::io::error::Error
  5914. impl core::convert::From<aya::programs::xdp::XdpError> for aya::programs::ProgramError
  5915. pub fn aya::programs::ProgramError::from(source: aya::programs::xdp::XdpError) -> Self
  5916. impl core::error::Error for aya::programs::xdp::XdpError
  5917. pub fn aya::programs::xdp::XdpError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  5918. impl core::fmt::Display for aya::programs::xdp::XdpError
  5919. pub fn aya::programs::xdp::XdpError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5920. impl core::fmt::Debug for aya::programs::xdp::XdpError
  5921. pub fn aya::programs::xdp::XdpError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5922. impl core::marker::Send for aya::programs::xdp::XdpError
  5923. impl core::marker::Sync for aya::programs::xdp::XdpError
  5924. impl core::marker::Unpin for aya::programs::xdp::XdpError
  5925. impl !core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpError
  5926. impl !core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpError
  5927. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpError where U: core::convert::From<T>
  5928. pub fn aya::programs::xdp::XdpError::into(self) -> U
  5929. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpError where U: core::convert::Into<T>
  5930. pub type aya::programs::xdp::XdpError::Error = core::convert::Infallible
  5931. pub fn aya::programs::xdp::XdpError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5932. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpError where U: core::convert::TryFrom<T>
  5933. pub type aya::programs::xdp::XdpError::Error = <U as core::convert::TryFrom<T>>::Error
  5934. pub fn aya::programs::xdp::XdpError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5935. impl<T> alloc::string::ToString for aya::programs::xdp::XdpError where T: core::fmt::Display + core::marker::Sized
  5936. pub fn aya::programs::xdp::XdpError::to_string(&self) -> alloc::string::String
  5937. impl<T> core::any::Any for aya::programs::xdp::XdpError where T: 'static + core::marker::Sized
  5938. pub fn aya::programs::xdp::XdpError::type_id(&self) -> core::any::TypeId
  5939. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpError where T: core::marker::Sized
  5940. pub fn aya::programs::xdp::XdpError::borrow(&self) -> &T
  5941. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpError where T: core::marker::Sized
  5942. pub fn aya::programs::xdp::XdpError::borrow_mut(&mut self) -> &mut T
  5943. impl<T> core::convert::From<T> for aya::programs::xdp::XdpError
  5944. pub fn aya::programs::xdp::XdpError::from(t: T) -> T
  5945. pub struct aya::programs::BtfTracePoint
  5946. impl aya::programs::tp_btf::BtfTracePoint
  5947. pub fn aya::programs::tp_btf::BtfTracePoint::attach(&mut self) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLinkId, aya::programs::ProgramError>
  5948. pub fn aya::programs::tp_btf::BtfTracePoint::detach(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5949. pub fn aya::programs::tp_btf::BtfTracePoint::load(&mut self, tracepoint: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  5950. pub fn aya::programs::tp_btf::BtfTracePoint::take_link(&mut self, link_id: aya::programs::tp_btf::BtfTracePointLinkId) -> core::result::Result<aya::programs::tp_btf::BtfTracePointLink, aya::programs::ProgramError>
  5951. impl aya::programs::tp_btf::BtfTracePoint
  5952. pub fn aya::programs::tp_btf::BtfTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  5953. impl aya::programs::tp_btf::BtfTracePoint
  5954. pub fn aya::programs::tp_btf::BtfTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  5955. impl aya::programs::tp_btf::BtfTracePoint
  5956. pub fn aya::programs::tp_btf::BtfTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  5957. impl aya::programs::tp_btf::BtfTracePoint
  5958. pub fn aya::programs::tp_btf::BtfTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  5959. pub fn aya::programs::tp_btf::BtfTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  5960. impl aya::programs::tp_btf::BtfTracePoint
  5961. pub fn aya::programs::tp_btf::BtfTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5962. impl core::ops::drop::Drop for aya::programs::tp_btf::BtfTracePoint
  5963. pub fn aya::programs::tp_btf::BtfTracePoint::drop(&mut self)
  5964. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tp_btf::BtfTracePoint
  5965. pub type &'a aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  5966. pub fn &'a aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  5967. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tp_btf::BtfTracePoint
  5968. pub type &'a mut aya::programs::tp_btf::BtfTracePoint::Error = aya::programs::ProgramError
  5969. pub fn &'a mut aya::programs::tp_btf::BtfTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tp_btf::BtfTracePoint, aya::programs::ProgramError>
  5970. impl core::fmt::Debug for aya::programs::tp_btf::BtfTracePoint
  5971. pub fn aya::programs::tp_btf::BtfTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  5972. impl core::marker::Send for aya::programs::tp_btf::BtfTracePoint
  5973. impl core::marker::Sync for aya::programs::tp_btf::BtfTracePoint
  5974. impl core::marker::Unpin for aya::programs::tp_btf::BtfTracePoint
  5975. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tp_btf::BtfTracePoint
  5976. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tp_btf::BtfTracePoint
  5977. impl<T, U> core::convert::Into<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::From<T>
  5978. pub fn aya::programs::tp_btf::BtfTracePoint::into(self) -> U
  5979. impl<T, U> core::convert::TryFrom<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::Into<T>
  5980. pub type aya::programs::tp_btf::BtfTracePoint::Error = core::convert::Infallible
  5981. pub fn aya::programs::tp_btf::BtfTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  5982. impl<T, U> core::convert::TryInto<U> for aya::programs::tp_btf::BtfTracePoint where U: core::convert::TryFrom<T>
  5983. pub type aya::programs::tp_btf::BtfTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  5984. pub fn aya::programs::tp_btf::BtfTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  5985. impl<T> core::any::Any for aya::programs::tp_btf::BtfTracePoint where T: 'static + core::marker::Sized
  5986. pub fn aya::programs::tp_btf::BtfTracePoint::type_id(&self) -> core::any::TypeId
  5987. impl<T> core::borrow::Borrow<T> for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized
  5988. pub fn aya::programs::tp_btf::BtfTracePoint::borrow(&self) -> &T
  5989. impl<T> core::borrow::BorrowMut<T> for aya::programs::tp_btf::BtfTracePoint where T: core::marker::Sized
  5990. pub fn aya::programs::tp_btf::BtfTracePoint::borrow_mut(&mut self) -> &mut T
  5991. impl<T> core::convert::From<T> for aya::programs::tp_btf::BtfTracePoint
  5992. pub fn aya::programs::tp_btf::BtfTracePoint::from(t: T) -> T
  5993. pub struct aya::programs::CgroupDevice
  5994. impl aya::programs::cgroup_device::CgroupDevice
  5995. pub fn aya::programs::cgroup_device::CgroupDevice::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLinkId, aya::programs::ProgramError>
  5996. pub fn aya::programs::cgroup_device::CgroupDevice::detach(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  5997. pub fn aya::programs::cgroup_device::CgroupDevice::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  5998. pub fn aya::programs::cgroup_device::CgroupDevice::take_link(&mut self, link_id: aya::programs::cgroup_device::CgroupDeviceLinkId) -> core::result::Result<aya::programs::cgroup_device::CgroupDeviceLink, aya::programs::ProgramError>
  5999. impl aya::programs::cgroup_device::CgroupDevice
  6000. pub fn aya::programs::cgroup_device::CgroupDevice::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6001. impl aya::programs::cgroup_device::CgroupDevice
  6002. pub fn aya::programs::cgroup_device::CgroupDevice::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6003. impl aya::programs::cgroup_device::CgroupDevice
  6004. pub fn aya::programs::cgroup_device::CgroupDevice::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6005. impl aya::programs::cgroup_device::CgroupDevice
  6006. pub fn aya::programs::cgroup_device::CgroupDevice::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6007. pub fn aya::programs::cgroup_device::CgroupDevice::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6008. impl aya::programs::cgroup_device::CgroupDevice
  6009. pub fn aya::programs::cgroup_device::CgroupDevice::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6010. impl core::ops::drop::Drop for aya::programs::cgroup_device::CgroupDevice
  6011. pub fn aya::programs::cgroup_device::CgroupDevice::drop(&mut self)
  6012. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_device::CgroupDevice
  6013. pub type &'a aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  6014. pub fn &'a aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  6015. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_device::CgroupDevice
  6016. pub type &'a mut aya::programs::cgroup_device::CgroupDevice::Error = aya::programs::ProgramError
  6017. pub fn &'a mut aya::programs::cgroup_device::CgroupDevice::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_device::CgroupDevice, aya::programs::ProgramError>
  6018. impl core::fmt::Debug for aya::programs::cgroup_device::CgroupDevice
  6019. pub fn aya::programs::cgroup_device::CgroupDevice::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6020. impl core::marker::Send for aya::programs::cgroup_device::CgroupDevice
  6021. impl core::marker::Sync for aya::programs::cgroup_device::CgroupDevice
  6022. impl core::marker::Unpin for aya::programs::cgroup_device::CgroupDevice
  6023. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_device::CgroupDevice
  6024. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_device::CgroupDevice
  6025. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::From<T>
  6026. pub fn aya::programs::cgroup_device::CgroupDevice::into(self) -> U
  6027. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::Into<T>
  6028. pub type aya::programs::cgroup_device::CgroupDevice::Error = core::convert::Infallible
  6029. pub fn aya::programs::cgroup_device::CgroupDevice::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6030. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_device::CgroupDevice where U: core::convert::TryFrom<T>
  6031. pub type aya::programs::cgroup_device::CgroupDevice::Error = <U as core::convert::TryFrom<T>>::Error
  6032. pub fn aya::programs::cgroup_device::CgroupDevice::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6033. impl<T> core::any::Any for aya::programs::cgroup_device::CgroupDevice where T: 'static + core::marker::Sized
  6034. pub fn aya::programs::cgroup_device::CgroupDevice::type_id(&self) -> core::any::TypeId
  6035. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized
  6036. pub fn aya::programs::cgroup_device::CgroupDevice::borrow(&self) -> &T
  6037. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_device::CgroupDevice where T: core::marker::Sized
  6038. pub fn aya::programs::cgroup_device::CgroupDevice::borrow_mut(&mut self) -> &mut T
  6039. impl<T> core::convert::From<T> for aya::programs::cgroup_device::CgroupDevice
  6040. pub fn aya::programs::cgroup_device::CgroupDevice::from(t: T) -> T
  6041. pub struct aya::programs::CgroupSkb
  6042. impl aya::programs::cgroup_skb::CgroupSkb
  6043. pub fn aya::programs::cgroup_skb::CgroupSkb::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T, attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLinkId, aya::programs::ProgramError>
  6044. pub fn aya::programs::cgroup_skb::CgroupSkb::detach(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6045. pub fn aya::programs::cgroup_skb::CgroupSkb::expected_attach_type(&self) -> &core::option::Option<aya::programs::cgroup_skb::CgroupSkbAttachType>
  6046. pub fn aya::programs::cgroup_skb::CgroupSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, expected_attach_type: aya::programs::cgroup_skb::CgroupSkbAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  6047. pub fn aya::programs::cgroup_skb::CgroupSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6048. pub fn aya::programs::cgroup_skb::CgroupSkb::take_link(&mut self, link_id: aya::programs::cgroup_skb::CgroupSkbLinkId) -> core::result::Result<aya::programs::cgroup_skb::CgroupSkbLink, aya::programs::ProgramError>
  6049. impl aya::programs::cgroup_skb::CgroupSkb
  6050. pub fn aya::programs::cgroup_skb::CgroupSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6051. impl aya::programs::cgroup_skb::CgroupSkb
  6052. pub fn aya::programs::cgroup_skb::CgroupSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6053. impl aya::programs::cgroup_skb::CgroupSkb
  6054. pub fn aya::programs::cgroup_skb::CgroupSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6055. pub fn aya::programs::cgroup_skb::CgroupSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6056. impl aya::programs::cgroup_skb::CgroupSkb
  6057. pub fn aya::programs::cgroup_skb::CgroupSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6058. impl core::ops::drop::Drop for aya::programs::cgroup_skb::CgroupSkb
  6059. pub fn aya::programs::cgroup_skb::CgroupSkb::drop(&mut self)
  6060. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_skb::CgroupSkb
  6061. pub type &'a aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  6062. pub fn &'a aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  6063. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_skb::CgroupSkb
  6064. pub type &'a mut aya::programs::cgroup_skb::CgroupSkb::Error = aya::programs::ProgramError
  6065. pub fn &'a mut aya::programs::cgroup_skb::CgroupSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_skb::CgroupSkb, aya::programs::ProgramError>
  6066. impl core::fmt::Debug for aya::programs::cgroup_skb::CgroupSkb
  6067. pub fn aya::programs::cgroup_skb::CgroupSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6068. impl core::marker::Send for aya::programs::cgroup_skb::CgroupSkb
  6069. impl core::marker::Sync for aya::programs::cgroup_skb::CgroupSkb
  6070. impl core::marker::Unpin for aya::programs::cgroup_skb::CgroupSkb
  6071. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  6072. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_skb::CgroupSkb
  6073. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::From<T>
  6074. pub fn aya::programs::cgroup_skb::CgroupSkb::into(self) -> U
  6075. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::Into<T>
  6076. pub type aya::programs::cgroup_skb::CgroupSkb::Error = core::convert::Infallible
  6077. pub fn aya::programs::cgroup_skb::CgroupSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6078. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_skb::CgroupSkb where U: core::convert::TryFrom<T>
  6079. pub type aya::programs::cgroup_skb::CgroupSkb::Error = <U as core::convert::TryFrom<T>>::Error
  6080. pub fn aya::programs::cgroup_skb::CgroupSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6081. impl<T> core::any::Any for aya::programs::cgroup_skb::CgroupSkb where T: 'static + core::marker::Sized
  6082. pub fn aya::programs::cgroup_skb::CgroupSkb::type_id(&self) -> core::any::TypeId
  6083. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized
  6084. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow(&self) -> &T
  6085. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_skb::CgroupSkb where T: core::marker::Sized
  6086. pub fn aya::programs::cgroup_skb::CgroupSkb::borrow_mut(&mut self) -> &mut T
  6087. impl<T> core::convert::From<T> for aya::programs::cgroup_skb::CgroupSkb
  6088. pub fn aya::programs::cgroup_skb::CgroupSkb::from(t: T) -> T
  6089. pub struct aya::programs::CgroupSock
  6090. impl aya::programs::cgroup_sock::CgroupSock
  6091. pub fn aya::programs::cgroup_sock::CgroupSock::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLinkId, aya::programs::ProgramError>
  6092. pub fn aya::programs::cgroup_sock::CgroupSock::detach(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6093. pub fn aya::programs::cgroup_sock::CgroupSock::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock::CgroupSockAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  6094. pub fn aya::programs::cgroup_sock::CgroupSock::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6095. pub fn aya::programs::cgroup_sock::CgroupSock::take_link(&mut self, link_id: aya::programs::cgroup_sock::CgroupSockLinkId) -> core::result::Result<aya::programs::cgroup_sock::CgroupSockLink, aya::programs::ProgramError>
  6096. impl aya::programs::cgroup_sock::CgroupSock
  6097. pub fn aya::programs::cgroup_sock::CgroupSock::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6098. impl aya::programs::cgroup_sock::CgroupSock
  6099. pub fn aya::programs::cgroup_sock::CgroupSock::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6100. impl aya::programs::cgroup_sock::CgroupSock
  6101. pub fn aya::programs::cgroup_sock::CgroupSock::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6102. pub fn aya::programs::cgroup_sock::CgroupSock::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6103. impl aya::programs::cgroup_sock::CgroupSock
  6104. pub fn aya::programs::cgroup_sock::CgroupSock::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6105. impl core::ops::drop::Drop for aya::programs::cgroup_sock::CgroupSock
  6106. pub fn aya::programs::cgroup_sock::CgroupSock::drop(&mut self)
  6107. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock::CgroupSock
  6108. pub type &'a aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  6109. pub fn &'a aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  6110. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock::CgroupSock
  6111. pub type &'a mut aya::programs::cgroup_sock::CgroupSock::Error = aya::programs::ProgramError
  6112. pub fn &'a mut aya::programs::cgroup_sock::CgroupSock::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock::CgroupSock, aya::programs::ProgramError>
  6113. impl core::fmt::Debug for aya::programs::cgroup_sock::CgroupSock
  6114. pub fn aya::programs::cgroup_sock::CgroupSock::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6115. impl core::marker::Send for aya::programs::cgroup_sock::CgroupSock
  6116. impl core::marker::Sync for aya::programs::cgroup_sock::CgroupSock
  6117. impl core::marker::Unpin for aya::programs::cgroup_sock::CgroupSock
  6118. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock::CgroupSock
  6119. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock::CgroupSock
  6120. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::From<T>
  6121. pub fn aya::programs::cgroup_sock::CgroupSock::into(self) -> U
  6122. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::Into<T>
  6123. pub type aya::programs::cgroup_sock::CgroupSock::Error = core::convert::Infallible
  6124. pub fn aya::programs::cgroup_sock::CgroupSock::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6125. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock::CgroupSock where U: core::convert::TryFrom<T>
  6126. pub type aya::programs::cgroup_sock::CgroupSock::Error = <U as core::convert::TryFrom<T>>::Error
  6127. pub fn aya::programs::cgroup_sock::CgroupSock::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6128. impl<T> core::any::Any for aya::programs::cgroup_sock::CgroupSock where T: 'static + core::marker::Sized
  6129. pub fn aya::programs::cgroup_sock::CgroupSock::type_id(&self) -> core::any::TypeId
  6130. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized
  6131. pub fn aya::programs::cgroup_sock::CgroupSock::borrow(&self) -> &T
  6132. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock::CgroupSock where T: core::marker::Sized
  6133. pub fn aya::programs::cgroup_sock::CgroupSock::borrow_mut(&mut self) -> &mut T
  6134. impl<T> core::convert::From<T> for aya::programs::cgroup_sock::CgroupSock
  6135. pub fn aya::programs::cgroup_sock::CgroupSock::from(t: T) -> T
  6136. pub struct aya::programs::CgroupSockAddr
  6137. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6138. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId, aya::programs::ProgramError>
  6139. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::detach(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6140. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sock_addr::CgroupSockAddrAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  6141. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6142. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::take_link(&mut self, link_id: aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId) -> core::result::Result<aya::programs::cgroup_sock_addr::CgroupSockAddrLink, aya::programs::ProgramError>
  6143. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6144. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6145. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6146. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6147. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6148. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6149. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6150. impl aya::programs::cgroup_sock_addr::CgroupSockAddr
  6151. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6152. impl core::ops::drop::Drop for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6153. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::drop(&mut self)
  6154. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sock_addr::CgroupSockAddr
  6155. pub type &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  6156. pub fn &'a aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  6157. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr
  6158. pub type &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = aya::programs::ProgramError
  6159. pub fn &'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sock_addr::CgroupSockAddr, aya::programs::ProgramError>
  6160. impl core::fmt::Debug for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6161. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6162. impl core::marker::Send for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6163. impl core::marker::Sync for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6164. impl core::marker::Unpin for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6165. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6166. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6167. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::From<T>
  6168. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::into(self) -> U
  6169. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::Into<T>
  6170. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = core::convert::Infallible
  6171. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6172. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sock_addr::CgroupSockAddr where U: core::convert::TryFrom<T>
  6173. pub type aya::programs::cgroup_sock_addr::CgroupSockAddr::Error = <U as core::convert::TryFrom<T>>::Error
  6174. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6175. impl<T> core::any::Any for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: 'static + core::marker::Sized
  6176. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::type_id(&self) -> core::any::TypeId
  6177. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized
  6178. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow(&self) -> &T
  6179. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr where T: core::marker::Sized
  6180. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::borrow_mut(&mut self) -> &mut T
  6181. impl<T> core::convert::From<T> for aya::programs::cgroup_sock_addr::CgroupSockAddr
  6182. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddr::from(t: T) -> T
  6183. pub struct aya::programs::CgroupSockopt
  6184. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6185. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLinkId, aya::programs::ProgramError>
  6186. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::detach(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6187. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::cgroup_sockopt::CgroupSockoptAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  6188. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6189. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::take_link(&mut self, link_id: aya::programs::cgroup_sockopt::CgroupSockoptLinkId) -> core::result::Result<aya::programs::cgroup_sockopt::CgroupSockoptLink, aya::programs::ProgramError>
  6190. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6191. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6192. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6193. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6194. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6195. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6196. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6197. impl aya::programs::cgroup_sockopt::CgroupSockopt
  6198. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6199. impl core::ops::drop::Drop for aya::programs::cgroup_sockopt::CgroupSockopt
  6200. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::drop(&mut self)
  6201. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sockopt::CgroupSockopt
  6202. pub type &'a aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  6203. pub fn &'a aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  6204. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sockopt::CgroupSockopt
  6205. pub type &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::Error = aya::programs::ProgramError
  6206. pub fn &'a mut aya::programs::cgroup_sockopt::CgroupSockopt::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sockopt::CgroupSockopt, aya::programs::ProgramError>
  6207. impl core::fmt::Debug for aya::programs::cgroup_sockopt::CgroupSockopt
  6208. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6209. impl core::marker::Send for aya::programs::cgroup_sockopt::CgroupSockopt
  6210. impl core::marker::Sync for aya::programs::cgroup_sockopt::CgroupSockopt
  6211. impl core::marker::Unpin for aya::programs::cgroup_sockopt::CgroupSockopt
  6212. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  6213. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sockopt::CgroupSockopt
  6214. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::From<T>
  6215. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::into(self) -> U
  6216. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::Into<T>
  6217. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = core::convert::Infallible
  6218. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6219. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sockopt::CgroupSockopt where U: core::convert::TryFrom<T>
  6220. pub type aya::programs::cgroup_sockopt::CgroupSockopt::Error = <U as core::convert::TryFrom<T>>::Error
  6221. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6222. impl<T> core::any::Any for aya::programs::cgroup_sockopt::CgroupSockopt where T: 'static + core::marker::Sized
  6223. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::type_id(&self) -> core::any::TypeId
  6224. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized
  6225. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow(&self) -> &T
  6226. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sockopt::CgroupSockopt where T: core::marker::Sized
  6227. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::borrow_mut(&mut self) -> &mut T
  6228. impl<T> core::convert::From<T> for aya::programs::cgroup_sockopt::CgroupSockopt
  6229. pub fn aya::programs::cgroup_sockopt::CgroupSockopt::from(t: T) -> T
  6230. pub struct aya::programs::CgroupSysctl
  6231. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6232. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLinkId, aya::programs::ProgramError>
  6233. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::detach(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6234. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6235. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::take_link(&mut self, link_id: aya::programs::cgroup_sysctl::CgroupSysctlLinkId) -> core::result::Result<aya::programs::cgroup_sysctl::CgroupSysctlLink, aya::programs::ProgramError>
  6236. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6237. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6238. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6239. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6240. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6241. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6242. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6243. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6244. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6245. impl aya::programs::cgroup_sysctl::CgroupSysctl
  6246. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6247. impl core::ops::drop::Drop for aya::programs::cgroup_sysctl::CgroupSysctl
  6248. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::drop(&mut self)
  6249. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::cgroup_sysctl::CgroupSysctl
  6250. pub type &'a aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  6251. pub fn &'a aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  6252. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::cgroup_sysctl::CgroupSysctl
  6253. pub type &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::Error = aya::programs::ProgramError
  6254. pub fn &'a mut aya::programs::cgroup_sysctl::CgroupSysctl::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::cgroup_sysctl::CgroupSysctl, aya::programs::ProgramError>
  6255. impl core::fmt::Debug for aya::programs::cgroup_sysctl::CgroupSysctl
  6256. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6257. impl core::marker::Send for aya::programs::cgroup_sysctl::CgroupSysctl
  6258. impl core::marker::Sync for aya::programs::cgroup_sysctl::CgroupSysctl
  6259. impl core::marker::Unpin for aya::programs::cgroup_sysctl::CgroupSysctl
  6260. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  6261. impl core::panic::unwind_safe::UnwindSafe for aya::programs::cgroup_sysctl::CgroupSysctl
  6262. impl<T, U> core::convert::Into<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::From<T>
  6263. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::into(self) -> U
  6264. impl<T, U> core::convert::TryFrom<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::Into<T>
  6265. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = core::convert::Infallible
  6266. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6267. impl<T, U> core::convert::TryInto<U> for aya::programs::cgroup_sysctl::CgroupSysctl where U: core::convert::TryFrom<T>
  6268. pub type aya::programs::cgroup_sysctl::CgroupSysctl::Error = <U as core::convert::TryFrom<T>>::Error
  6269. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6270. impl<T> core::any::Any for aya::programs::cgroup_sysctl::CgroupSysctl where T: 'static + core::marker::Sized
  6271. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::type_id(&self) -> core::any::TypeId
  6272. impl<T> core::borrow::Borrow<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized
  6273. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow(&self) -> &T
  6274. impl<T> core::borrow::BorrowMut<T> for aya::programs::cgroup_sysctl::CgroupSysctl where T: core::marker::Sized
  6275. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::borrow_mut(&mut self) -> &mut T
  6276. impl<T> core::convert::From<T> for aya::programs::cgroup_sysctl::CgroupSysctl
  6277. pub fn aya::programs::cgroup_sysctl::CgroupSysctl::from(t: T) -> T
  6278. pub struct aya::programs::Extension
  6279. impl aya::programs::extension::Extension
  6280. pub fn aya::programs::extension::Extension::attach(&mut self) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  6281. pub fn aya::programs::extension::Extension::attach_to_program(&mut self, program: &aya::programs::ProgramFd, func_name: &str) -> core::result::Result<aya::programs::extension::ExtensionLinkId, aya::programs::ProgramError>
  6282. pub fn aya::programs::extension::Extension::detach(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6283. pub fn aya::programs::extension::Extension::load(&mut self, program: aya::programs::ProgramFd, func_name: &str) -> core::result::Result<(), aya::programs::ProgramError>
  6284. pub fn aya::programs::extension::Extension::take_link(&mut self, link_id: aya::programs::extension::ExtensionLinkId) -> core::result::Result<aya::programs::extension::ExtensionLink, aya::programs::ProgramError>
  6285. impl aya::programs::extension::Extension
  6286. pub fn aya::programs::extension::Extension::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6287. impl aya::programs::extension::Extension
  6288. pub fn aya::programs::extension::Extension::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6289. impl aya::programs::extension::Extension
  6290. pub fn aya::programs::extension::Extension::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6291. impl aya::programs::extension::Extension
  6292. pub fn aya::programs::extension::Extension::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6293. pub fn aya::programs::extension::Extension::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6294. impl aya::programs::extension::Extension
  6295. pub fn aya::programs::extension::Extension::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6296. impl core::ops::drop::Drop for aya::programs::extension::Extension
  6297. pub fn aya::programs::extension::Extension::drop(&mut self)
  6298. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::extension::Extension
  6299. pub type &'a aya::programs::extension::Extension::Error = aya::programs::ProgramError
  6300. pub fn &'a aya::programs::extension::Extension::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::extension::Extension, aya::programs::ProgramError>
  6301. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::extension::Extension
  6302. pub type &'a mut aya::programs::extension::Extension::Error = aya::programs::ProgramError
  6303. pub fn &'a mut aya::programs::extension::Extension::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::extension::Extension, aya::programs::ProgramError>
  6304. impl core::fmt::Debug for aya::programs::extension::Extension
  6305. pub fn aya::programs::extension::Extension::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6306. impl core::marker::Send for aya::programs::extension::Extension
  6307. impl core::marker::Sync for aya::programs::extension::Extension
  6308. impl core::marker::Unpin for aya::programs::extension::Extension
  6309. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::extension::Extension
  6310. impl core::panic::unwind_safe::UnwindSafe for aya::programs::extension::Extension
  6311. impl<T, U> core::convert::Into<U> for aya::programs::extension::Extension where U: core::convert::From<T>
  6312. pub fn aya::programs::extension::Extension::into(self) -> U
  6313. impl<T, U> core::convert::TryFrom<U> for aya::programs::extension::Extension where U: core::convert::Into<T>
  6314. pub type aya::programs::extension::Extension::Error = core::convert::Infallible
  6315. pub fn aya::programs::extension::Extension::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6316. impl<T, U> core::convert::TryInto<U> for aya::programs::extension::Extension where U: core::convert::TryFrom<T>
  6317. pub type aya::programs::extension::Extension::Error = <U as core::convert::TryFrom<T>>::Error
  6318. pub fn aya::programs::extension::Extension::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6319. impl<T> core::any::Any for aya::programs::extension::Extension where T: 'static + core::marker::Sized
  6320. pub fn aya::programs::extension::Extension::type_id(&self) -> core::any::TypeId
  6321. impl<T> core::borrow::Borrow<T> for aya::programs::extension::Extension where T: core::marker::Sized
  6322. pub fn aya::programs::extension::Extension::borrow(&self) -> &T
  6323. impl<T> core::borrow::BorrowMut<T> for aya::programs::extension::Extension where T: core::marker::Sized
  6324. pub fn aya::programs::extension::Extension::borrow_mut(&mut self) -> &mut T
  6325. impl<T> core::convert::From<T> for aya::programs::extension::Extension
  6326. pub fn aya::programs::extension::Extension::from(t: T) -> T
  6327. pub struct aya::programs::FEntry
  6328. impl aya::programs::fentry::FEntry
  6329. pub fn aya::programs::fentry::FEntry::attach(&mut self) -> core::result::Result<aya::programs::fentry::FEntryLinkId, aya::programs::ProgramError>
  6330. pub fn aya::programs::fentry::FEntry::detach(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6331. pub fn aya::programs::fentry::FEntry::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6332. pub fn aya::programs::fentry::FEntry::take_link(&mut self, link_id: aya::programs::fentry::FEntryLinkId) -> core::result::Result<aya::programs::fentry::FEntryLink, aya::programs::ProgramError>
  6333. impl aya::programs::fentry::FEntry
  6334. pub fn aya::programs::fentry::FEntry::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6335. impl aya::programs::fentry::FEntry
  6336. pub fn aya::programs::fentry::FEntry::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6337. impl aya::programs::fentry::FEntry
  6338. pub fn aya::programs::fentry::FEntry::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6339. impl aya::programs::fentry::FEntry
  6340. pub fn aya::programs::fentry::FEntry::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6341. pub fn aya::programs::fentry::FEntry::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6342. impl aya::programs::fentry::FEntry
  6343. pub fn aya::programs::fentry::FEntry::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6344. impl core::ops::drop::Drop for aya::programs::fentry::FEntry
  6345. pub fn aya::programs::fentry::FEntry::drop(&mut self)
  6346. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fentry::FEntry
  6347. pub type &'a aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  6348. pub fn &'a aya::programs::fentry::FEntry::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fentry::FEntry, aya::programs::ProgramError>
  6349. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fentry::FEntry
  6350. pub type &'a mut aya::programs::fentry::FEntry::Error = aya::programs::ProgramError
  6351. pub fn &'a mut aya::programs::fentry::FEntry::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fentry::FEntry, aya::programs::ProgramError>
  6352. impl core::fmt::Debug for aya::programs::fentry::FEntry
  6353. pub fn aya::programs::fentry::FEntry::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6354. impl core::marker::Send for aya::programs::fentry::FEntry
  6355. impl core::marker::Sync for aya::programs::fentry::FEntry
  6356. impl core::marker::Unpin for aya::programs::fentry::FEntry
  6357. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fentry::FEntry
  6358. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fentry::FEntry
  6359. impl<T, U> core::convert::Into<U> for aya::programs::fentry::FEntry where U: core::convert::From<T>
  6360. pub fn aya::programs::fentry::FEntry::into(self) -> U
  6361. impl<T, U> core::convert::TryFrom<U> for aya::programs::fentry::FEntry where U: core::convert::Into<T>
  6362. pub type aya::programs::fentry::FEntry::Error = core::convert::Infallible
  6363. pub fn aya::programs::fentry::FEntry::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6364. impl<T, U> core::convert::TryInto<U> for aya::programs::fentry::FEntry where U: core::convert::TryFrom<T>
  6365. pub type aya::programs::fentry::FEntry::Error = <U as core::convert::TryFrom<T>>::Error
  6366. pub fn aya::programs::fentry::FEntry::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6367. impl<T> core::any::Any for aya::programs::fentry::FEntry where T: 'static + core::marker::Sized
  6368. pub fn aya::programs::fentry::FEntry::type_id(&self) -> core::any::TypeId
  6369. impl<T> core::borrow::Borrow<T> for aya::programs::fentry::FEntry where T: core::marker::Sized
  6370. pub fn aya::programs::fentry::FEntry::borrow(&self) -> &T
  6371. impl<T> core::borrow::BorrowMut<T> for aya::programs::fentry::FEntry where T: core::marker::Sized
  6372. pub fn aya::programs::fentry::FEntry::borrow_mut(&mut self) -> &mut T
  6373. impl<T> core::convert::From<T> for aya::programs::fentry::FEntry
  6374. pub fn aya::programs::fentry::FEntry::from(t: T) -> T
  6375. pub struct aya::programs::FExit
  6376. impl aya::programs::fexit::FExit
  6377. pub fn aya::programs::fexit::FExit::attach(&mut self) -> core::result::Result<aya::programs::fexit::FExitLinkId, aya::programs::ProgramError>
  6378. pub fn aya::programs::fexit::FExit::detach(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6379. pub fn aya::programs::fexit::FExit::load(&mut self, fn_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6380. pub fn aya::programs::fexit::FExit::take_link(&mut self, link_id: aya::programs::fexit::FExitLinkId) -> core::result::Result<aya::programs::fexit::FExitLink, aya::programs::ProgramError>
  6381. impl aya::programs::fexit::FExit
  6382. pub fn aya::programs::fexit::FExit::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6383. impl aya::programs::fexit::FExit
  6384. pub fn aya::programs::fexit::FExit::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6385. impl aya::programs::fexit::FExit
  6386. pub fn aya::programs::fexit::FExit::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6387. impl aya::programs::fexit::FExit
  6388. pub fn aya::programs::fexit::FExit::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6389. pub fn aya::programs::fexit::FExit::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6390. impl aya::programs::fexit::FExit
  6391. pub fn aya::programs::fexit::FExit::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6392. impl core::ops::drop::Drop for aya::programs::fexit::FExit
  6393. pub fn aya::programs::fexit::FExit::drop(&mut self)
  6394. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::fexit::FExit
  6395. pub type &'a aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  6396. pub fn &'a aya::programs::fexit::FExit::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::fexit::FExit, aya::programs::ProgramError>
  6397. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::fexit::FExit
  6398. pub type &'a mut aya::programs::fexit::FExit::Error = aya::programs::ProgramError
  6399. pub fn &'a mut aya::programs::fexit::FExit::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::fexit::FExit, aya::programs::ProgramError>
  6400. impl core::fmt::Debug for aya::programs::fexit::FExit
  6401. pub fn aya::programs::fexit::FExit::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6402. impl core::marker::Send for aya::programs::fexit::FExit
  6403. impl core::marker::Sync for aya::programs::fexit::FExit
  6404. impl core::marker::Unpin for aya::programs::fexit::FExit
  6405. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::fexit::FExit
  6406. impl core::panic::unwind_safe::UnwindSafe for aya::programs::fexit::FExit
  6407. impl<T, U> core::convert::Into<U> for aya::programs::fexit::FExit where U: core::convert::From<T>
  6408. pub fn aya::programs::fexit::FExit::into(self) -> U
  6409. impl<T, U> core::convert::TryFrom<U> for aya::programs::fexit::FExit where U: core::convert::Into<T>
  6410. pub type aya::programs::fexit::FExit::Error = core::convert::Infallible
  6411. pub fn aya::programs::fexit::FExit::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6412. impl<T, U> core::convert::TryInto<U> for aya::programs::fexit::FExit where U: core::convert::TryFrom<T>
  6413. pub type aya::programs::fexit::FExit::Error = <U as core::convert::TryFrom<T>>::Error
  6414. pub fn aya::programs::fexit::FExit::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6415. impl<T> core::any::Any for aya::programs::fexit::FExit where T: 'static + core::marker::Sized
  6416. pub fn aya::programs::fexit::FExit::type_id(&self) -> core::any::TypeId
  6417. impl<T> core::borrow::Borrow<T> for aya::programs::fexit::FExit where T: core::marker::Sized
  6418. pub fn aya::programs::fexit::FExit::borrow(&self) -> &T
  6419. impl<T> core::borrow::BorrowMut<T> for aya::programs::fexit::FExit where T: core::marker::Sized
  6420. pub fn aya::programs::fexit::FExit::borrow_mut(&mut self) -> &mut T
  6421. impl<T> core::convert::From<T> for aya::programs::fexit::FExit
  6422. pub fn aya::programs::fexit::FExit::from(t: T) -> T
  6423. pub struct aya::programs::KProbe
  6424. impl aya::programs::kprobe::KProbe
  6425. pub fn aya::programs::kprobe::KProbe::attach<T: core::convert::AsRef<std::ffi::os_str::OsStr>>(&mut self, fn_name: T, offset: u64) -> core::result::Result<aya::programs::kprobe::KProbeLinkId, aya::programs::ProgramError>
  6426. pub fn aya::programs::kprobe::KProbe::detach(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6427. pub fn aya::programs::kprobe::KProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  6428. pub fn aya::programs::kprobe::KProbe::kind(&self) -> aya::programs::ProbeKind
  6429. pub fn aya::programs::kprobe::KProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6430. pub fn aya::programs::kprobe::KProbe::take_link(&mut self, link_id: aya::programs::kprobe::KProbeLinkId) -> core::result::Result<aya::programs::kprobe::KProbeLink, aya::programs::ProgramError>
  6431. impl aya::programs::kprobe::KProbe
  6432. pub fn aya::programs::kprobe::KProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6433. impl aya::programs::kprobe::KProbe
  6434. pub fn aya::programs::kprobe::KProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6435. impl aya::programs::kprobe::KProbe
  6436. pub fn aya::programs::kprobe::KProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6437. pub fn aya::programs::kprobe::KProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6438. impl aya::programs::kprobe::KProbe
  6439. pub fn aya::programs::kprobe::KProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6440. impl core::ops::drop::Drop for aya::programs::kprobe::KProbe
  6441. pub fn aya::programs::kprobe::KProbe::drop(&mut self)
  6442. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::kprobe::KProbe
  6443. pub type &'a aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  6444. pub fn &'a aya::programs::kprobe::KProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  6445. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::kprobe::KProbe
  6446. pub type &'a mut aya::programs::kprobe::KProbe::Error = aya::programs::ProgramError
  6447. pub fn &'a mut aya::programs::kprobe::KProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::kprobe::KProbe, aya::programs::ProgramError>
  6448. impl core::fmt::Debug for aya::programs::kprobe::KProbe
  6449. pub fn aya::programs::kprobe::KProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6450. impl core::marker::Send for aya::programs::kprobe::KProbe
  6451. impl core::marker::Sync for aya::programs::kprobe::KProbe
  6452. impl core::marker::Unpin for aya::programs::kprobe::KProbe
  6453. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::kprobe::KProbe
  6454. impl core::panic::unwind_safe::UnwindSafe for aya::programs::kprobe::KProbe
  6455. impl<T, U> core::convert::Into<U> for aya::programs::kprobe::KProbe where U: core::convert::From<T>
  6456. pub fn aya::programs::kprobe::KProbe::into(self) -> U
  6457. impl<T, U> core::convert::TryFrom<U> for aya::programs::kprobe::KProbe where U: core::convert::Into<T>
  6458. pub type aya::programs::kprobe::KProbe::Error = core::convert::Infallible
  6459. pub fn aya::programs::kprobe::KProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6460. impl<T, U> core::convert::TryInto<U> for aya::programs::kprobe::KProbe where U: core::convert::TryFrom<T>
  6461. pub type aya::programs::kprobe::KProbe::Error = <U as core::convert::TryFrom<T>>::Error
  6462. pub fn aya::programs::kprobe::KProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6463. impl<T> core::any::Any for aya::programs::kprobe::KProbe where T: 'static + core::marker::Sized
  6464. pub fn aya::programs::kprobe::KProbe::type_id(&self) -> core::any::TypeId
  6465. impl<T> core::borrow::Borrow<T> for aya::programs::kprobe::KProbe where T: core::marker::Sized
  6466. pub fn aya::programs::kprobe::KProbe::borrow(&self) -> &T
  6467. impl<T> core::borrow::BorrowMut<T> for aya::programs::kprobe::KProbe where T: core::marker::Sized
  6468. pub fn aya::programs::kprobe::KProbe::borrow_mut(&mut self) -> &mut T
  6469. impl<T> core::convert::From<T> for aya::programs::kprobe::KProbe
  6470. pub fn aya::programs::kprobe::KProbe::from(t: T) -> T
  6471. pub struct aya::programs::LircMode2
  6472. impl aya::programs::lirc_mode2::LircMode2
  6473. pub fn aya::programs::lirc_mode2::LircMode2::attach<T: std::os::fd::owned::AsFd>(&mut self, lircdev: T) -> core::result::Result<aya::programs::lirc_mode2::LircLinkId, aya::programs::ProgramError>
  6474. pub fn aya::programs::lirc_mode2::LircMode2::detach(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6475. pub fn aya::programs::lirc_mode2::LircMode2::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6476. pub fn aya::programs::lirc_mode2::LircMode2::query<T: std::os::fd::owned::AsFd>(target_fd: T) -> core::result::Result<alloc::vec::Vec<aya::programs::lirc_mode2::LircLink>, aya::programs::ProgramError>
  6477. pub fn aya::programs::lirc_mode2::LircMode2::take_link(&mut self, link_id: aya::programs::lirc_mode2::LircLinkId) -> core::result::Result<aya::programs::lirc_mode2::LircLink, aya::programs::ProgramError>
  6478. impl aya::programs::lirc_mode2::LircMode2
  6479. pub fn aya::programs::lirc_mode2::LircMode2::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6480. impl aya::programs::lirc_mode2::LircMode2
  6481. pub fn aya::programs::lirc_mode2::LircMode2::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6482. impl aya::programs::lirc_mode2::LircMode2
  6483. pub fn aya::programs::lirc_mode2::LircMode2::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6484. impl aya::programs::lirc_mode2::LircMode2
  6485. pub fn aya::programs::lirc_mode2::LircMode2::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6486. pub fn aya::programs::lirc_mode2::LircMode2::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6487. impl aya::programs::lirc_mode2::LircMode2
  6488. pub fn aya::programs::lirc_mode2::LircMode2::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6489. impl core::ops::drop::Drop for aya::programs::lirc_mode2::LircMode2
  6490. pub fn aya::programs::lirc_mode2::LircMode2::drop(&mut self)
  6491. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lirc_mode2::LircMode2
  6492. pub type &'a aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  6493. pub fn &'a aya::programs::lirc_mode2::LircMode2::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  6494. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lirc_mode2::LircMode2
  6495. pub type &'a mut aya::programs::lirc_mode2::LircMode2::Error = aya::programs::ProgramError
  6496. pub fn &'a mut aya::programs::lirc_mode2::LircMode2::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lirc_mode2::LircMode2, aya::programs::ProgramError>
  6497. impl core::fmt::Debug for aya::programs::lirc_mode2::LircMode2
  6498. pub fn aya::programs::lirc_mode2::LircMode2::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6499. impl core::marker::Send for aya::programs::lirc_mode2::LircMode2
  6500. impl core::marker::Sync for aya::programs::lirc_mode2::LircMode2
  6501. impl core::marker::Unpin for aya::programs::lirc_mode2::LircMode2
  6502. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lirc_mode2::LircMode2
  6503. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lirc_mode2::LircMode2
  6504. impl<T, U> core::convert::Into<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::From<T>
  6505. pub fn aya::programs::lirc_mode2::LircMode2::into(self) -> U
  6506. impl<T, U> core::convert::TryFrom<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::Into<T>
  6507. pub type aya::programs::lirc_mode2::LircMode2::Error = core::convert::Infallible
  6508. pub fn aya::programs::lirc_mode2::LircMode2::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6509. impl<T, U> core::convert::TryInto<U> for aya::programs::lirc_mode2::LircMode2 where U: core::convert::TryFrom<T>
  6510. pub type aya::programs::lirc_mode2::LircMode2::Error = <U as core::convert::TryFrom<T>>::Error
  6511. pub fn aya::programs::lirc_mode2::LircMode2::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6512. impl<T> core::any::Any for aya::programs::lirc_mode2::LircMode2 where T: 'static + core::marker::Sized
  6513. pub fn aya::programs::lirc_mode2::LircMode2::type_id(&self) -> core::any::TypeId
  6514. impl<T> core::borrow::Borrow<T> for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized
  6515. pub fn aya::programs::lirc_mode2::LircMode2::borrow(&self) -> &T
  6516. impl<T> core::borrow::BorrowMut<T> for aya::programs::lirc_mode2::LircMode2 where T: core::marker::Sized
  6517. pub fn aya::programs::lirc_mode2::LircMode2::borrow_mut(&mut self) -> &mut T
  6518. impl<T> core::convert::From<T> for aya::programs::lirc_mode2::LircMode2
  6519. pub fn aya::programs::lirc_mode2::LircMode2::from(t: T) -> T
  6520. pub struct aya::programs::Lsm
  6521. impl aya::programs::lsm::Lsm
  6522. pub fn aya::programs::lsm::Lsm::attach(&mut self) -> core::result::Result<aya::programs::lsm::LsmLinkId, aya::programs::ProgramError>
  6523. pub fn aya::programs::lsm::Lsm::detach(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6524. pub fn aya::programs::lsm::Lsm::load(&mut self, lsm_hook_name: &str, btf: &aya_obj::btf::btf::Btf) -> core::result::Result<(), aya::programs::ProgramError>
  6525. pub fn aya::programs::lsm::Lsm::take_link(&mut self, link_id: aya::programs::lsm::LsmLinkId) -> core::result::Result<aya::programs::lsm::LsmLink, aya::programs::ProgramError>
  6526. impl aya::programs::lsm::Lsm
  6527. pub fn aya::programs::lsm::Lsm::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6528. impl aya::programs::lsm::Lsm
  6529. pub fn aya::programs::lsm::Lsm::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6530. impl aya::programs::lsm::Lsm
  6531. pub fn aya::programs::lsm::Lsm::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6532. impl aya::programs::lsm::Lsm
  6533. pub fn aya::programs::lsm::Lsm::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6534. pub fn aya::programs::lsm::Lsm::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6535. impl aya::programs::lsm::Lsm
  6536. pub fn aya::programs::lsm::Lsm::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6537. impl core::ops::drop::Drop for aya::programs::lsm::Lsm
  6538. pub fn aya::programs::lsm::Lsm::drop(&mut self)
  6539. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::lsm::Lsm
  6540. pub type &'a aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  6541. pub fn &'a aya::programs::lsm::Lsm::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::lsm::Lsm, aya::programs::ProgramError>
  6542. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::lsm::Lsm
  6543. pub type &'a mut aya::programs::lsm::Lsm::Error = aya::programs::ProgramError
  6544. pub fn &'a mut aya::programs::lsm::Lsm::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::lsm::Lsm, aya::programs::ProgramError>
  6545. impl core::fmt::Debug for aya::programs::lsm::Lsm
  6546. pub fn aya::programs::lsm::Lsm::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6547. impl core::marker::Send for aya::programs::lsm::Lsm
  6548. impl core::marker::Sync for aya::programs::lsm::Lsm
  6549. impl core::marker::Unpin for aya::programs::lsm::Lsm
  6550. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::lsm::Lsm
  6551. impl core::panic::unwind_safe::UnwindSafe for aya::programs::lsm::Lsm
  6552. impl<T, U> core::convert::Into<U> for aya::programs::lsm::Lsm where U: core::convert::From<T>
  6553. pub fn aya::programs::lsm::Lsm::into(self) -> U
  6554. impl<T, U> core::convert::TryFrom<U> for aya::programs::lsm::Lsm where U: core::convert::Into<T>
  6555. pub type aya::programs::lsm::Lsm::Error = core::convert::Infallible
  6556. pub fn aya::programs::lsm::Lsm::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6557. impl<T, U> core::convert::TryInto<U> for aya::programs::lsm::Lsm where U: core::convert::TryFrom<T>
  6558. pub type aya::programs::lsm::Lsm::Error = <U as core::convert::TryFrom<T>>::Error
  6559. pub fn aya::programs::lsm::Lsm::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6560. impl<T> core::any::Any for aya::programs::lsm::Lsm where T: 'static + core::marker::Sized
  6561. pub fn aya::programs::lsm::Lsm::type_id(&self) -> core::any::TypeId
  6562. impl<T> core::borrow::Borrow<T> for aya::programs::lsm::Lsm where T: core::marker::Sized
  6563. pub fn aya::programs::lsm::Lsm::borrow(&self) -> &T
  6564. impl<T> core::borrow::BorrowMut<T> for aya::programs::lsm::Lsm where T: core::marker::Sized
  6565. pub fn aya::programs::lsm::Lsm::borrow_mut(&mut self) -> &mut T
  6566. impl<T> core::convert::From<T> for aya::programs::lsm::Lsm
  6567. pub fn aya::programs::lsm::Lsm::from(t: T) -> T
  6568. pub struct aya::programs::PerfEvent
  6569. impl aya::programs::perf_event::PerfEvent
  6570. pub fn aya::programs::perf_event::PerfEvent::attach(&mut self, perf_type: aya::programs::perf_event::PerfTypeId, config: u64, scope: aya::programs::perf_event::PerfEventScope, sample_policy: aya::programs::perf_event::SamplePolicy) -> core::result::Result<aya::programs::perf_event::PerfEventLinkId, aya::programs::ProgramError>
  6571. pub fn aya::programs::perf_event::PerfEvent::detach(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6572. pub fn aya::programs::perf_event::PerfEvent::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6573. pub fn aya::programs::perf_event::PerfEvent::take_link(&mut self, link_id: aya::programs::perf_event::PerfEventLinkId) -> core::result::Result<aya::programs::perf_event::PerfEventLink, aya::programs::ProgramError>
  6574. impl aya::programs::perf_event::PerfEvent
  6575. pub fn aya::programs::perf_event::PerfEvent::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6576. impl aya::programs::perf_event::PerfEvent
  6577. pub fn aya::programs::perf_event::PerfEvent::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6578. impl aya::programs::perf_event::PerfEvent
  6579. pub fn aya::programs::perf_event::PerfEvent::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6580. impl aya::programs::perf_event::PerfEvent
  6581. pub fn aya::programs::perf_event::PerfEvent::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6582. pub fn aya::programs::perf_event::PerfEvent::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6583. impl aya::programs::perf_event::PerfEvent
  6584. pub fn aya::programs::perf_event::PerfEvent::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6585. impl core::ops::drop::Drop for aya::programs::perf_event::PerfEvent
  6586. pub fn aya::programs::perf_event::PerfEvent::drop(&mut self)
  6587. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::perf_event::PerfEvent
  6588. pub type &'a aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  6589. pub fn &'a aya::programs::perf_event::PerfEvent::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  6590. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::perf_event::PerfEvent
  6591. pub type &'a mut aya::programs::perf_event::PerfEvent::Error = aya::programs::ProgramError
  6592. pub fn &'a mut aya::programs::perf_event::PerfEvent::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::perf_event::PerfEvent, aya::programs::ProgramError>
  6593. impl core::fmt::Debug for aya::programs::perf_event::PerfEvent
  6594. pub fn aya::programs::perf_event::PerfEvent::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6595. impl core::marker::Send for aya::programs::perf_event::PerfEvent
  6596. impl core::marker::Sync for aya::programs::perf_event::PerfEvent
  6597. impl core::marker::Unpin for aya::programs::perf_event::PerfEvent
  6598. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::perf_event::PerfEvent
  6599. impl core::panic::unwind_safe::UnwindSafe for aya::programs::perf_event::PerfEvent
  6600. impl<T, U> core::convert::Into<U> for aya::programs::perf_event::PerfEvent where U: core::convert::From<T>
  6601. pub fn aya::programs::perf_event::PerfEvent::into(self) -> U
  6602. impl<T, U> core::convert::TryFrom<U> for aya::programs::perf_event::PerfEvent where U: core::convert::Into<T>
  6603. pub type aya::programs::perf_event::PerfEvent::Error = core::convert::Infallible
  6604. pub fn aya::programs::perf_event::PerfEvent::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6605. impl<T, U> core::convert::TryInto<U> for aya::programs::perf_event::PerfEvent where U: core::convert::TryFrom<T>
  6606. pub type aya::programs::perf_event::PerfEvent::Error = <U as core::convert::TryFrom<T>>::Error
  6607. pub fn aya::programs::perf_event::PerfEvent::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6608. impl<T> core::any::Any for aya::programs::perf_event::PerfEvent where T: 'static + core::marker::Sized
  6609. pub fn aya::programs::perf_event::PerfEvent::type_id(&self) -> core::any::TypeId
  6610. impl<T> core::borrow::Borrow<T> for aya::programs::perf_event::PerfEvent where T: core::marker::Sized
  6611. pub fn aya::programs::perf_event::PerfEvent::borrow(&self) -> &T
  6612. impl<T> core::borrow::BorrowMut<T> for aya::programs::perf_event::PerfEvent where T: core::marker::Sized
  6613. pub fn aya::programs::perf_event::PerfEvent::borrow_mut(&mut self) -> &mut T
  6614. impl<T> core::convert::From<T> for aya::programs::perf_event::PerfEvent
  6615. pub fn aya::programs::perf_event::PerfEvent::from(t: T) -> T
  6616. pub struct aya::programs::ProgramFd(_)
  6617. impl aya::programs::ProgramFd
  6618. pub fn aya::programs::ProgramFd::try_clone(&self) -> std::io::error::Result<Self>
  6619. impl std::os::fd::owned::AsFd for aya::programs::ProgramFd
  6620. pub fn aya::programs::ProgramFd::as_fd(&self) -> std::os::fd::owned::BorrowedFd<'_>
  6621. impl core::fmt::Debug for aya::programs::ProgramFd
  6622. pub fn aya::programs::ProgramFd::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6623. impl core::marker::Send for aya::programs::ProgramFd
  6624. impl core::marker::Sync for aya::programs::ProgramFd
  6625. impl core::marker::Unpin for aya::programs::ProgramFd
  6626. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramFd
  6627. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramFd
  6628. impl<T, U> core::convert::Into<U> for aya::programs::ProgramFd where U: core::convert::From<T>
  6629. pub fn aya::programs::ProgramFd::into(self) -> U
  6630. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramFd where U: core::convert::Into<T>
  6631. pub type aya::programs::ProgramFd::Error = core::convert::Infallible
  6632. pub fn aya::programs::ProgramFd::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6633. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramFd where U: core::convert::TryFrom<T>
  6634. pub type aya::programs::ProgramFd::Error = <U as core::convert::TryFrom<T>>::Error
  6635. pub fn aya::programs::ProgramFd::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6636. impl<T> core::any::Any for aya::programs::ProgramFd where T: 'static + core::marker::Sized
  6637. pub fn aya::programs::ProgramFd::type_id(&self) -> core::any::TypeId
  6638. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramFd where T: core::marker::Sized
  6639. pub fn aya::programs::ProgramFd::borrow(&self) -> &T
  6640. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramFd where T: core::marker::Sized
  6641. pub fn aya::programs::ProgramFd::borrow_mut(&mut self) -> &mut T
  6642. impl<T> core::convert::From<T> for aya::programs::ProgramFd
  6643. pub fn aya::programs::ProgramFd::from(t: T) -> T
  6644. pub struct aya::programs::ProgramInfo(_)
  6645. impl aya::programs::ProgramInfo
  6646. pub fn aya::programs::ProgramInfo::btf_id(&self) -> core::option::Option<core::num::nonzero::NonZeroU32>
  6647. pub fn aya::programs::ProgramInfo::fd(&self) -> core::result::Result<aya::programs::ProgramFd, aya::programs::ProgramError>
  6648. pub fn aya::programs::ProgramInfo::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6649. pub fn aya::programs::ProgramInfo::gpl_compatible(&self) -> bool
  6650. pub fn aya::programs::ProgramInfo::id(&self) -> u32
  6651. pub fn aya::programs::ProgramInfo::loaded_at(&self) -> std::time::SystemTime
  6652. pub fn aya::programs::ProgramInfo::map_ids(&self) -> core::result::Result<alloc::vec::Vec<u32>, aya::programs::ProgramError>
  6653. pub fn aya::programs::ProgramInfo::memory_locked(&self) -> core::result::Result<u32, aya::programs::ProgramError>
  6654. pub fn aya::programs::ProgramInfo::name(&self) -> &[u8]
  6655. pub fn aya::programs::ProgramInfo::name_as_str(&self) -> core::option::Option<&str>
  6656. pub fn aya::programs::ProgramInfo::program_type(&self) -> u32
  6657. pub fn aya::programs::ProgramInfo::size_jitted(&self) -> u32
  6658. pub fn aya::programs::ProgramInfo::size_translated(&self) -> u32
  6659. pub fn aya::programs::ProgramInfo::tag(&self) -> u64
  6660. pub fn aya::programs::ProgramInfo::verified_instruction_count(&self) -> u32
  6661. impl core::fmt::Debug for aya::programs::ProgramInfo
  6662. pub fn aya::programs::ProgramInfo::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6663. impl core::marker::Send for aya::programs::ProgramInfo
  6664. impl core::marker::Sync for aya::programs::ProgramInfo
  6665. impl core::marker::Unpin for aya::programs::ProgramInfo
  6666. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::ProgramInfo
  6667. impl core::panic::unwind_safe::UnwindSafe for aya::programs::ProgramInfo
  6668. impl<T, U> core::convert::Into<U> for aya::programs::ProgramInfo where U: core::convert::From<T>
  6669. pub fn aya::programs::ProgramInfo::into(self) -> U
  6670. impl<T, U> core::convert::TryFrom<U> for aya::programs::ProgramInfo where U: core::convert::Into<T>
  6671. pub type aya::programs::ProgramInfo::Error = core::convert::Infallible
  6672. pub fn aya::programs::ProgramInfo::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6673. impl<T, U> core::convert::TryInto<U> for aya::programs::ProgramInfo where U: core::convert::TryFrom<T>
  6674. pub type aya::programs::ProgramInfo::Error = <U as core::convert::TryFrom<T>>::Error
  6675. pub fn aya::programs::ProgramInfo::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6676. impl<T> core::any::Any for aya::programs::ProgramInfo where T: 'static + core::marker::Sized
  6677. pub fn aya::programs::ProgramInfo::type_id(&self) -> core::any::TypeId
  6678. impl<T> core::borrow::Borrow<T> for aya::programs::ProgramInfo where T: core::marker::Sized
  6679. pub fn aya::programs::ProgramInfo::borrow(&self) -> &T
  6680. impl<T> core::borrow::BorrowMut<T> for aya::programs::ProgramInfo where T: core::marker::Sized
  6681. pub fn aya::programs::ProgramInfo::borrow_mut(&mut self) -> &mut T
  6682. impl<T> core::convert::From<T> for aya::programs::ProgramInfo
  6683. pub fn aya::programs::ProgramInfo::from(t: T) -> T
  6684. pub struct aya::programs::RawTracePoint
  6685. impl aya::programs::RawTracePoint
  6686. pub fn aya::programs::RawTracePoint::attach(&mut self, tp_name: &str) -> core::result::Result<RawTracePointLinkId, aya::programs::ProgramError>
  6687. pub fn aya::programs::RawTracePoint::detach(&mut self, link_id: RawTracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6688. pub fn aya::programs::RawTracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6689. pub fn aya::programs::RawTracePoint::take_link(&mut self, link_id: RawTracePointLinkId) -> core::result::Result<RawTracePointLink, aya::programs::ProgramError>
  6690. impl aya::programs::RawTracePoint
  6691. pub fn aya::programs::RawTracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6692. impl aya::programs::RawTracePoint
  6693. pub fn aya::programs::RawTracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6694. impl aya::programs::RawTracePoint
  6695. pub fn aya::programs::RawTracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6696. impl aya::programs::RawTracePoint
  6697. pub fn aya::programs::RawTracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6698. pub fn aya::programs::RawTracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6699. impl aya::programs::RawTracePoint
  6700. pub fn aya::programs::RawTracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6701. impl core::ops::drop::Drop for aya::programs::RawTracePoint
  6702. pub fn aya::programs::RawTracePoint::drop(&mut self)
  6703. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::RawTracePoint
  6704. pub type &'a aya::programs::RawTracePoint::Error = aya::programs::ProgramError
  6705. pub fn &'a aya::programs::RawTracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::RawTracePoint, aya::programs::ProgramError>
  6706. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::RawTracePoint
  6707. pub type &'a mut aya::programs::RawTracePoint::Error = aya::programs::ProgramError
  6708. pub fn &'a mut aya::programs::RawTracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::RawTracePoint, aya::programs::ProgramError>
  6709. impl core::fmt::Debug for aya::programs::RawTracePoint
  6710. pub fn aya::programs::RawTracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6711. impl core::marker::Send for aya::programs::RawTracePoint
  6712. impl core::marker::Sync for aya::programs::RawTracePoint
  6713. impl core::marker::Unpin for aya::programs::RawTracePoint
  6714. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::RawTracePoint
  6715. impl core::panic::unwind_safe::UnwindSafe for aya::programs::RawTracePoint
  6716. impl<T, U> core::convert::Into<U> for aya::programs::RawTracePoint where U: core::convert::From<T>
  6717. pub fn aya::programs::RawTracePoint::into(self) -> U
  6718. impl<T, U> core::convert::TryFrom<U> for aya::programs::RawTracePoint where U: core::convert::Into<T>
  6719. pub type aya::programs::RawTracePoint::Error = core::convert::Infallible
  6720. pub fn aya::programs::RawTracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6721. impl<T, U> core::convert::TryInto<U> for aya::programs::RawTracePoint where U: core::convert::TryFrom<T>
  6722. pub type aya::programs::RawTracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  6723. pub fn aya::programs::RawTracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6724. impl<T> core::any::Any for aya::programs::RawTracePoint where T: 'static + core::marker::Sized
  6725. pub fn aya::programs::RawTracePoint::type_id(&self) -> core::any::TypeId
  6726. impl<T> core::borrow::Borrow<T> for aya::programs::RawTracePoint where T: core::marker::Sized
  6727. pub fn aya::programs::RawTracePoint::borrow(&self) -> &T
  6728. impl<T> core::borrow::BorrowMut<T> for aya::programs::RawTracePoint where T: core::marker::Sized
  6729. pub fn aya::programs::RawTracePoint::borrow_mut(&mut self) -> &mut T
  6730. impl<T> core::convert::From<T> for aya::programs::RawTracePoint
  6731. pub fn aya::programs::RawTracePoint::from(t: T) -> T
  6732. pub struct aya::programs::SchedClassifier
  6733. impl aya::programs::tc::SchedClassifier
  6734. pub fn aya::programs::tc::SchedClassifier::attach(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6735. pub fn aya::programs::tc::SchedClassifier::attach_with_options(&mut self, interface: &str, attach_type: aya::programs::tc::TcAttachType, options: aya::programs::tc::TcOptions) -> core::result::Result<aya::programs::tc::SchedClassifierLinkId, aya::programs::ProgramError>
  6736. pub fn aya::programs::tc::SchedClassifier::detach(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6737. pub fn aya::programs::tc::SchedClassifier::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6738. pub fn aya::programs::tc::SchedClassifier::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6739. pub fn aya::programs::tc::SchedClassifier::take_link(&mut self, link_id: aya::programs::tc::SchedClassifierLinkId) -> core::result::Result<aya::programs::tc::SchedClassifierLink, aya::programs::ProgramError>
  6740. impl aya::programs::tc::SchedClassifier
  6741. pub fn aya::programs::tc::SchedClassifier::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6742. impl aya::programs::tc::SchedClassifier
  6743. pub fn aya::programs::tc::SchedClassifier::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6744. impl aya::programs::tc::SchedClassifier
  6745. pub fn aya::programs::tc::SchedClassifier::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6746. pub fn aya::programs::tc::SchedClassifier::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6747. impl aya::programs::tc::SchedClassifier
  6748. pub fn aya::programs::tc::SchedClassifier::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6749. impl core::ops::drop::Drop for aya::programs::tc::SchedClassifier
  6750. pub fn aya::programs::tc::SchedClassifier::drop(&mut self)
  6751. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::tc::SchedClassifier
  6752. pub type &'a aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6753. pub fn &'a aya::programs::tc::SchedClassifier::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6754. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::tc::SchedClassifier
  6755. pub type &'a mut aya::programs::tc::SchedClassifier::Error = aya::programs::ProgramError
  6756. pub fn &'a mut aya::programs::tc::SchedClassifier::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::tc::SchedClassifier, aya::programs::ProgramError>
  6757. impl core::fmt::Debug for aya::programs::tc::SchedClassifier
  6758. pub fn aya::programs::tc::SchedClassifier::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6759. impl core::marker::Send for aya::programs::tc::SchedClassifier
  6760. impl core::marker::Sync for aya::programs::tc::SchedClassifier
  6761. impl core::marker::Unpin for aya::programs::tc::SchedClassifier
  6762. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::tc::SchedClassifier
  6763. impl core::panic::unwind_safe::UnwindSafe for aya::programs::tc::SchedClassifier
  6764. impl<T, U> core::convert::Into<U> for aya::programs::tc::SchedClassifier where U: core::convert::From<T>
  6765. pub fn aya::programs::tc::SchedClassifier::into(self) -> U
  6766. impl<T, U> core::convert::TryFrom<U> for aya::programs::tc::SchedClassifier where U: core::convert::Into<T>
  6767. pub type aya::programs::tc::SchedClassifier::Error = core::convert::Infallible
  6768. pub fn aya::programs::tc::SchedClassifier::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6769. impl<T, U> core::convert::TryInto<U> for aya::programs::tc::SchedClassifier where U: core::convert::TryFrom<T>
  6770. pub type aya::programs::tc::SchedClassifier::Error = <U as core::convert::TryFrom<T>>::Error
  6771. pub fn aya::programs::tc::SchedClassifier::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6772. impl<T> core::any::Any for aya::programs::tc::SchedClassifier where T: 'static + core::marker::Sized
  6773. pub fn aya::programs::tc::SchedClassifier::type_id(&self) -> core::any::TypeId
  6774. impl<T> core::borrow::Borrow<T> for aya::programs::tc::SchedClassifier where T: core::marker::Sized
  6775. pub fn aya::programs::tc::SchedClassifier::borrow(&self) -> &T
  6776. impl<T> core::borrow::BorrowMut<T> for aya::programs::tc::SchedClassifier where T: core::marker::Sized
  6777. pub fn aya::programs::tc::SchedClassifier::borrow_mut(&mut self) -> &mut T
  6778. impl<T> core::convert::From<T> for aya::programs::tc::SchedClassifier
  6779. pub fn aya::programs::tc::SchedClassifier::from(t: T) -> T
  6780. pub struct aya::programs::SkLookup
  6781. impl aya::programs::SkLookup
  6782. pub fn aya::programs::SkLookup::attach<T: std::os::fd::owned::AsFd>(&mut self, netns: T) -> core::result::Result<SkLookupLinkId, aya::programs::ProgramError>
  6783. pub fn aya::programs::SkLookup::detach(&mut self, link_id: SkLookupLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6784. pub fn aya::programs::SkLookup::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6785. pub fn aya::programs::SkLookup::take_link(&mut self, link_id: SkLookupLinkId) -> core::result::Result<SkLookupLink, aya::programs::ProgramError>
  6786. impl aya::programs::SkLookup
  6787. pub fn aya::programs::SkLookup::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6788. impl aya::programs::SkLookup
  6789. pub fn aya::programs::SkLookup::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6790. impl aya::programs::SkLookup
  6791. pub fn aya::programs::SkLookup::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6792. impl aya::programs::SkLookup
  6793. pub fn aya::programs::SkLookup::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6794. pub fn aya::programs::SkLookup::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6795. impl aya::programs::SkLookup
  6796. pub fn aya::programs::SkLookup::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6797. impl core::ops::drop::Drop for aya::programs::SkLookup
  6798. pub fn aya::programs::SkLookup::drop(&mut self)
  6799. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkLookup
  6800. pub type &'a aya::programs::SkLookup::Error = aya::programs::ProgramError
  6801. pub fn &'a aya::programs::SkLookup::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkLookup, aya::programs::ProgramError>
  6802. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkLookup
  6803. pub type &'a mut aya::programs::SkLookup::Error = aya::programs::ProgramError
  6804. pub fn &'a mut aya::programs::SkLookup::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkLookup, aya::programs::ProgramError>
  6805. impl core::fmt::Debug for aya::programs::SkLookup
  6806. pub fn aya::programs::SkLookup::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6807. impl core::marker::Send for aya::programs::SkLookup
  6808. impl core::marker::Sync for aya::programs::SkLookup
  6809. impl core::marker::Unpin for aya::programs::SkLookup
  6810. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkLookup
  6811. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkLookup
  6812. impl<T, U> core::convert::Into<U> for aya::programs::SkLookup where U: core::convert::From<T>
  6813. pub fn aya::programs::SkLookup::into(self) -> U
  6814. impl<T, U> core::convert::TryFrom<U> for aya::programs::SkLookup where U: core::convert::Into<T>
  6815. pub type aya::programs::SkLookup::Error = core::convert::Infallible
  6816. pub fn aya::programs::SkLookup::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6817. impl<T, U> core::convert::TryInto<U> for aya::programs::SkLookup where U: core::convert::TryFrom<T>
  6818. pub type aya::programs::SkLookup::Error = <U as core::convert::TryFrom<T>>::Error
  6819. pub fn aya::programs::SkLookup::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6820. impl<T> core::any::Any for aya::programs::SkLookup where T: 'static + core::marker::Sized
  6821. pub fn aya::programs::SkLookup::type_id(&self) -> core::any::TypeId
  6822. impl<T> core::borrow::Borrow<T> for aya::programs::SkLookup where T: core::marker::Sized
  6823. pub fn aya::programs::SkLookup::borrow(&self) -> &T
  6824. impl<T> core::borrow::BorrowMut<T> for aya::programs::SkLookup where T: core::marker::Sized
  6825. pub fn aya::programs::SkLookup::borrow_mut(&mut self) -> &mut T
  6826. impl<T> core::convert::From<T> for aya::programs::SkLookup
  6827. pub fn aya::programs::SkLookup::from(t: T) -> T
  6828. pub struct aya::programs::SkMsg
  6829. impl aya::programs::SkMsg
  6830. pub fn aya::programs::SkMsg::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<SkMsgLinkId, aya::programs::ProgramError>
  6831. pub fn aya::programs::SkMsg::detach(&mut self, link_id: SkMsgLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6832. pub fn aya::programs::SkMsg::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6833. pub fn aya::programs::SkMsg::take_link(&mut self, link_id: SkMsgLinkId) -> core::result::Result<SkMsgLink, aya::programs::ProgramError>
  6834. impl aya::programs::SkMsg
  6835. pub fn aya::programs::SkMsg::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6836. impl aya::programs::SkMsg
  6837. pub fn aya::programs::SkMsg::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6838. impl aya::programs::SkMsg
  6839. pub fn aya::programs::SkMsg::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6840. impl aya::programs::SkMsg
  6841. pub fn aya::programs::SkMsg::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6842. pub fn aya::programs::SkMsg::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6843. impl aya::programs::SkMsg
  6844. pub fn aya::programs::SkMsg::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6845. impl core::ops::drop::Drop for aya::programs::SkMsg
  6846. pub fn aya::programs::SkMsg::drop(&mut self)
  6847. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkMsg
  6848. pub type &'a aya::programs::SkMsg::Error = aya::programs::ProgramError
  6849. pub fn &'a aya::programs::SkMsg::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkMsg, aya::programs::ProgramError>
  6850. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkMsg
  6851. pub type &'a mut aya::programs::SkMsg::Error = aya::programs::ProgramError
  6852. pub fn &'a mut aya::programs::SkMsg::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkMsg, aya::programs::ProgramError>
  6853. impl core::fmt::Debug for aya::programs::SkMsg
  6854. pub fn aya::programs::SkMsg::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6855. impl core::marker::Send for aya::programs::SkMsg
  6856. impl core::marker::Sync for aya::programs::SkMsg
  6857. impl core::marker::Unpin for aya::programs::SkMsg
  6858. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkMsg
  6859. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkMsg
  6860. impl<T, U> core::convert::Into<U> for aya::programs::SkMsg where U: core::convert::From<T>
  6861. pub fn aya::programs::SkMsg::into(self) -> U
  6862. impl<T, U> core::convert::TryFrom<U> for aya::programs::SkMsg where U: core::convert::Into<T>
  6863. pub type aya::programs::SkMsg::Error = core::convert::Infallible
  6864. pub fn aya::programs::SkMsg::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6865. impl<T, U> core::convert::TryInto<U> for aya::programs::SkMsg where U: core::convert::TryFrom<T>
  6866. pub type aya::programs::SkMsg::Error = <U as core::convert::TryFrom<T>>::Error
  6867. pub fn aya::programs::SkMsg::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6868. impl<T> core::any::Any for aya::programs::SkMsg where T: 'static + core::marker::Sized
  6869. pub fn aya::programs::SkMsg::type_id(&self) -> core::any::TypeId
  6870. impl<T> core::borrow::Borrow<T> for aya::programs::SkMsg where T: core::marker::Sized
  6871. pub fn aya::programs::SkMsg::borrow(&self) -> &T
  6872. impl<T> core::borrow::BorrowMut<T> for aya::programs::SkMsg where T: core::marker::Sized
  6873. pub fn aya::programs::SkMsg::borrow_mut(&mut self) -> &mut T
  6874. impl<T> core::convert::From<T> for aya::programs::SkMsg
  6875. pub fn aya::programs::SkMsg::from(t: T) -> T
  6876. pub struct aya::programs::SkSkb
  6877. impl aya::programs::SkSkb
  6878. pub fn aya::programs::SkSkb::attach(&mut self, map: &aya::maps::sock::SockMapFd) -> core::result::Result<SkSkbLinkId, aya::programs::ProgramError>
  6879. pub fn aya::programs::SkSkb::detach(&mut self, link_id: SkSkbLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6880. pub fn aya::programs::SkSkb::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::SkSkbKind) -> core::result::Result<Self, aya::programs::ProgramError>
  6881. pub fn aya::programs::SkSkb::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6882. pub fn aya::programs::SkSkb::take_link(&mut self, link_id: SkSkbLinkId) -> core::result::Result<SkSkbLink, aya::programs::ProgramError>
  6883. impl aya::programs::SkSkb
  6884. pub fn aya::programs::SkSkb::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6885. impl aya::programs::SkSkb
  6886. pub fn aya::programs::SkSkb::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6887. impl aya::programs::SkSkb
  6888. pub fn aya::programs::SkSkb::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6889. pub fn aya::programs::SkSkb::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6890. impl aya::programs::SkSkb
  6891. pub fn aya::programs::SkSkb::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6892. impl core::ops::drop::Drop for aya::programs::SkSkb
  6893. pub fn aya::programs::SkSkb::drop(&mut self)
  6894. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SkSkb
  6895. pub type &'a aya::programs::SkSkb::Error = aya::programs::ProgramError
  6896. pub fn &'a aya::programs::SkSkb::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SkSkb, aya::programs::ProgramError>
  6897. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SkSkb
  6898. pub type &'a mut aya::programs::SkSkb::Error = aya::programs::ProgramError
  6899. pub fn &'a mut aya::programs::SkSkb::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SkSkb, aya::programs::ProgramError>
  6900. impl core::fmt::Debug for aya::programs::SkSkb
  6901. pub fn aya::programs::SkSkb::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6902. impl core::marker::Send for aya::programs::SkSkb
  6903. impl core::marker::Sync for aya::programs::SkSkb
  6904. impl core::marker::Unpin for aya::programs::SkSkb
  6905. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SkSkb
  6906. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SkSkb
  6907. impl<T, U> core::convert::Into<U> for aya::programs::SkSkb where U: core::convert::From<T>
  6908. pub fn aya::programs::SkSkb::into(self) -> U
  6909. impl<T, U> core::convert::TryFrom<U> for aya::programs::SkSkb where U: core::convert::Into<T>
  6910. pub type aya::programs::SkSkb::Error = core::convert::Infallible
  6911. pub fn aya::programs::SkSkb::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6912. impl<T, U> core::convert::TryInto<U> for aya::programs::SkSkb where U: core::convert::TryFrom<T>
  6913. pub type aya::programs::SkSkb::Error = <U as core::convert::TryFrom<T>>::Error
  6914. pub fn aya::programs::SkSkb::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6915. impl<T> core::any::Any for aya::programs::SkSkb where T: 'static + core::marker::Sized
  6916. pub fn aya::programs::SkSkb::type_id(&self) -> core::any::TypeId
  6917. impl<T> core::borrow::Borrow<T> for aya::programs::SkSkb where T: core::marker::Sized
  6918. pub fn aya::programs::SkSkb::borrow(&self) -> &T
  6919. impl<T> core::borrow::BorrowMut<T> for aya::programs::SkSkb where T: core::marker::Sized
  6920. pub fn aya::programs::SkSkb::borrow_mut(&mut self) -> &mut T
  6921. impl<T> core::convert::From<T> for aya::programs::SkSkb
  6922. pub fn aya::programs::SkSkb::from(t: T) -> T
  6923. pub struct aya::programs::SockOps
  6924. impl aya::programs::SockOps
  6925. pub fn aya::programs::SockOps::attach<T: std::os::fd::owned::AsFd>(&mut self, cgroup: T) -> core::result::Result<SockOpsLinkId, aya::programs::ProgramError>
  6926. pub fn aya::programs::SockOps::detach(&mut self, link_id: SockOpsLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6927. pub fn aya::programs::SockOps::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6928. pub fn aya::programs::SockOps::take_link(&mut self, link_id: SockOpsLinkId) -> core::result::Result<SockOpsLink, aya::programs::ProgramError>
  6929. impl aya::programs::SockOps
  6930. pub fn aya::programs::SockOps::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6931. impl aya::programs::SockOps
  6932. pub fn aya::programs::SockOps::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6933. impl aya::programs::SockOps
  6934. pub fn aya::programs::SockOps::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6935. impl aya::programs::SockOps
  6936. pub fn aya::programs::SockOps::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6937. pub fn aya::programs::SockOps::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6938. impl aya::programs::SockOps
  6939. pub fn aya::programs::SockOps::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6940. impl core::ops::drop::Drop for aya::programs::SockOps
  6941. pub fn aya::programs::SockOps::drop(&mut self)
  6942. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SockOps
  6943. pub type &'a aya::programs::SockOps::Error = aya::programs::ProgramError
  6944. pub fn &'a aya::programs::SockOps::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SockOps, aya::programs::ProgramError>
  6945. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SockOps
  6946. pub type &'a mut aya::programs::SockOps::Error = aya::programs::ProgramError
  6947. pub fn &'a mut aya::programs::SockOps::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SockOps, aya::programs::ProgramError>
  6948. impl core::fmt::Debug for aya::programs::SockOps
  6949. pub fn aya::programs::SockOps::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6950. impl core::marker::Send for aya::programs::SockOps
  6951. impl core::marker::Sync for aya::programs::SockOps
  6952. impl core::marker::Unpin for aya::programs::SockOps
  6953. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SockOps
  6954. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SockOps
  6955. impl<T, U> core::convert::Into<U> for aya::programs::SockOps where U: core::convert::From<T>
  6956. pub fn aya::programs::SockOps::into(self) -> U
  6957. impl<T, U> core::convert::TryFrom<U> for aya::programs::SockOps where U: core::convert::Into<T>
  6958. pub type aya::programs::SockOps::Error = core::convert::Infallible
  6959. pub fn aya::programs::SockOps::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  6960. impl<T, U> core::convert::TryInto<U> for aya::programs::SockOps where U: core::convert::TryFrom<T>
  6961. pub type aya::programs::SockOps::Error = <U as core::convert::TryFrom<T>>::Error
  6962. pub fn aya::programs::SockOps::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  6963. impl<T> core::any::Any for aya::programs::SockOps where T: 'static + core::marker::Sized
  6964. pub fn aya::programs::SockOps::type_id(&self) -> core::any::TypeId
  6965. impl<T> core::borrow::Borrow<T> for aya::programs::SockOps where T: core::marker::Sized
  6966. pub fn aya::programs::SockOps::borrow(&self) -> &T
  6967. impl<T> core::borrow::BorrowMut<T> for aya::programs::SockOps where T: core::marker::Sized
  6968. pub fn aya::programs::SockOps::borrow_mut(&mut self) -> &mut T
  6969. impl<T> core::convert::From<T> for aya::programs::SockOps
  6970. pub fn aya::programs::SockOps::from(t: T) -> T
  6971. pub struct aya::programs::SocketFilter
  6972. impl aya::programs::SocketFilter
  6973. pub fn aya::programs::SocketFilter::attach<T: std::os::fd::owned::AsFd>(&mut self, socket: T) -> core::result::Result<SocketFilterLinkId, aya::programs::ProgramError>
  6974. pub fn aya::programs::SocketFilter::detach(&mut self, link_id: SocketFilterLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  6975. pub fn aya::programs::SocketFilter::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6976. pub fn aya::programs::SocketFilter::take_link(&mut self, link_id: SocketFilterLinkId) -> core::result::Result<SocketFilterLink, aya::programs::ProgramError>
  6977. impl aya::programs::SocketFilter
  6978. pub fn aya::programs::SocketFilter::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  6979. impl aya::programs::SocketFilter
  6980. pub fn aya::programs::SocketFilter::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  6981. impl aya::programs::SocketFilter
  6982. pub fn aya::programs::SocketFilter::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  6983. impl aya::programs::SocketFilter
  6984. pub fn aya::programs::SocketFilter::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  6985. pub fn aya::programs::SocketFilter::unpin(self) -> core::result::Result<(), std::io::error::Error>
  6986. impl aya::programs::SocketFilter
  6987. pub fn aya::programs::SocketFilter::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  6988. impl core::ops::drop::Drop for aya::programs::SocketFilter
  6989. pub fn aya::programs::SocketFilter::drop(&mut self)
  6990. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::SocketFilter
  6991. pub type &'a aya::programs::SocketFilter::Error = aya::programs::ProgramError
  6992. pub fn &'a aya::programs::SocketFilter::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::SocketFilter, aya::programs::ProgramError>
  6993. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::SocketFilter
  6994. pub type &'a mut aya::programs::SocketFilter::Error = aya::programs::ProgramError
  6995. pub fn &'a mut aya::programs::SocketFilter::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::SocketFilter, aya::programs::ProgramError>
  6996. impl core::fmt::Debug for aya::programs::SocketFilter
  6997. pub fn aya::programs::SocketFilter::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  6998. impl core::marker::Send for aya::programs::SocketFilter
  6999. impl core::marker::Sync for aya::programs::SocketFilter
  7000. impl core::marker::Unpin for aya::programs::SocketFilter
  7001. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::SocketFilter
  7002. impl core::panic::unwind_safe::UnwindSafe for aya::programs::SocketFilter
  7003. impl<T, U> core::convert::Into<U> for aya::programs::SocketFilter where U: core::convert::From<T>
  7004. pub fn aya::programs::SocketFilter::into(self) -> U
  7005. impl<T, U> core::convert::TryFrom<U> for aya::programs::SocketFilter where U: core::convert::Into<T>
  7006. pub type aya::programs::SocketFilter::Error = core::convert::Infallible
  7007. pub fn aya::programs::SocketFilter::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7008. impl<T, U> core::convert::TryInto<U> for aya::programs::SocketFilter where U: core::convert::TryFrom<T>
  7009. pub type aya::programs::SocketFilter::Error = <U as core::convert::TryFrom<T>>::Error
  7010. pub fn aya::programs::SocketFilter::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7011. impl<T> core::any::Any for aya::programs::SocketFilter where T: 'static + core::marker::Sized
  7012. pub fn aya::programs::SocketFilter::type_id(&self) -> core::any::TypeId
  7013. impl<T> core::borrow::Borrow<T> for aya::programs::SocketFilter where T: core::marker::Sized
  7014. pub fn aya::programs::SocketFilter::borrow(&self) -> &T
  7015. impl<T> core::borrow::BorrowMut<T> for aya::programs::SocketFilter where T: core::marker::Sized
  7016. pub fn aya::programs::SocketFilter::borrow_mut(&mut self) -> &mut T
  7017. impl<T> core::convert::From<T> for aya::programs::SocketFilter
  7018. pub fn aya::programs::SocketFilter::from(t: T) -> T
  7019. pub struct aya::programs::TracePoint
  7020. impl aya::programs::trace_point::TracePoint
  7021. pub fn aya::programs::trace_point::TracePoint::attach(&mut self, category: &str, name: &str) -> core::result::Result<aya::programs::trace_point::TracePointLinkId, aya::programs::ProgramError>
  7022. pub fn aya::programs::trace_point::TracePoint::detach(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7023. pub fn aya::programs::trace_point::TracePoint::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7024. pub fn aya::programs::trace_point::TracePoint::take_link(&mut self, link_id: aya::programs::trace_point::TracePointLinkId) -> core::result::Result<aya::programs::trace_point::TracePointLink, aya::programs::ProgramError>
  7025. impl aya::programs::trace_point::TracePoint
  7026. pub fn aya::programs::trace_point::TracePoint::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7027. impl aya::programs::trace_point::TracePoint
  7028. pub fn aya::programs::trace_point::TracePoint::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::programs::ProgramError>
  7029. impl aya::programs::trace_point::TracePoint
  7030. pub fn aya::programs::trace_point::TracePoint::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7031. impl aya::programs::trace_point::TracePoint
  7032. pub fn aya::programs::trace_point::TracePoint::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7033. pub fn aya::programs::trace_point::TracePoint::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7034. impl aya::programs::trace_point::TracePoint
  7035. pub fn aya::programs::trace_point::TracePoint::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7036. impl core::ops::drop::Drop for aya::programs::trace_point::TracePoint
  7037. pub fn aya::programs::trace_point::TracePoint::drop(&mut self)
  7038. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::trace_point::TracePoint
  7039. pub type &'a aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7040. pub fn &'a aya::programs::trace_point::TracePoint::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7041. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::trace_point::TracePoint
  7042. pub type &'a mut aya::programs::trace_point::TracePoint::Error = aya::programs::ProgramError
  7043. pub fn &'a mut aya::programs::trace_point::TracePoint::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::trace_point::TracePoint, aya::programs::ProgramError>
  7044. impl core::fmt::Debug for aya::programs::trace_point::TracePoint
  7045. pub fn aya::programs::trace_point::TracePoint::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7046. impl core::marker::Send for aya::programs::trace_point::TracePoint
  7047. impl core::marker::Sync for aya::programs::trace_point::TracePoint
  7048. impl core::marker::Unpin for aya::programs::trace_point::TracePoint
  7049. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::trace_point::TracePoint
  7050. impl core::panic::unwind_safe::UnwindSafe for aya::programs::trace_point::TracePoint
  7051. impl<T, U> core::convert::Into<U> for aya::programs::trace_point::TracePoint where U: core::convert::From<T>
  7052. pub fn aya::programs::trace_point::TracePoint::into(self) -> U
  7053. impl<T, U> core::convert::TryFrom<U> for aya::programs::trace_point::TracePoint where U: core::convert::Into<T>
  7054. pub type aya::programs::trace_point::TracePoint::Error = core::convert::Infallible
  7055. pub fn aya::programs::trace_point::TracePoint::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7056. impl<T, U> core::convert::TryInto<U> for aya::programs::trace_point::TracePoint where U: core::convert::TryFrom<T>
  7057. pub type aya::programs::trace_point::TracePoint::Error = <U as core::convert::TryFrom<T>>::Error
  7058. pub fn aya::programs::trace_point::TracePoint::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7059. impl<T> core::any::Any for aya::programs::trace_point::TracePoint where T: 'static + core::marker::Sized
  7060. pub fn aya::programs::trace_point::TracePoint::type_id(&self) -> core::any::TypeId
  7061. impl<T> core::borrow::Borrow<T> for aya::programs::trace_point::TracePoint where T: core::marker::Sized
  7062. pub fn aya::programs::trace_point::TracePoint::borrow(&self) -> &T
  7063. impl<T> core::borrow::BorrowMut<T> for aya::programs::trace_point::TracePoint where T: core::marker::Sized
  7064. pub fn aya::programs::trace_point::TracePoint::borrow_mut(&mut self) -> &mut T
  7065. impl<T> core::convert::From<T> for aya::programs::trace_point::TracePoint
  7066. pub fn aya::programs::trace_point::TracePoint::from(t: T) -> T
  7067. pub struct aya::programs::UProbe
  7068. impl aya::programs::uprobe::UProbe
  7069. pub fn aya::programs::uprobe::UProbe::attach<T: core::convert::AsRef<std::path::Path>>(&mut self, fn_name: core::option::Option<&str>, offset: u64, target: T, pid: core::option::Option<libc::unix::pid_t>) -> core::result::Result<aya::programs::uprobe::UProbeLinkId, aya::programs::ProgramError>
  7070. pub fn aya::programs::uprobe::UProbe::detach(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7071. pub fn aya::programs::uprobe::UProbe::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, kind: aya::programs::ProbeKind) -> core::result::Result<Self, aya::programs::ProgramError>
  7072. pub fn aya::programs::uprobe::UProbe::kind(&self) -> aya::programs::ProbeKind
  7073. pub fn aya::programs::uprobe::UProbe::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7074. pub fn aya::programs::uprobe::UProbe::take_link(&mut self, link_id: aya::programs::uprobe::UProbeLinkId) -> core::result::Result<aya::programs::uprobe::UProbeLink, aya::programs::ProgramError>
  7075. impl aya::programs::uprobe::UProbe
  7076. pub fn aya::programs::uprobe::UProbe::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7077. impl aya::programs::uprobe::UProbe
  7078. pub fn aya::programs::uprobe::UProbe::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7079. impl aya::programs::uprobe::UProbe
  7080. pub fn aya::programs::uprobe::UProbe::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7081. pub fn aya::programs::uprobe::UProbe::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7082. impl aya::programs::uprobe::UProbe
  7083. pub fn aya::programs::uprobe::UProbe::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7084. impl core::ops::drop::Drop for aya::programs::uprobe::UProbe
  7085. pub fn aya::programs::uprobe::UProbe::drop(&mut self)
  7086. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::uprobe::UProbe
  7087. pub type &'a aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7088. pub fn &'a aya::programs::uprobe::UProbe::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7089. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::uprobe::UProbe
  7090. pub type &'a mut aya::programs::uprobe::UProbe::Error = aya::programs::ProgramError
  7091. pub fn &'a mut aya::programs::uprobe::UProbe::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::uprobe::UProbe, aya::programs::ProgramError>
  7092. impl core::fmt::Debug for aya::programs::uprobe::UProbe
  7093. pub fn aya::programs::uprobe::UProbe::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7094. impl core::marker::Send for aya::programs::uprobe::UProbe
  7095. impl core::marker::Sync for aya::programs::uprobe::UProbe
  7096. impl core::marker::Unpin for aya::programs::uprobe::UProbe
  7097. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::uprobe::UProbe
  7098. impl core::panic::unwind_safe::UnwindSafe for aya::programs::uprobe::UProbe
  7099. impl<T, U> core::convert::Into<U> for aya::programs::uprobe::UProbe where U: core::convert::From<T>
  7100. pub fn aya::programs::uprobe::UProbe::into(self) -> U
  7101. impl<T, U> core::convert::TryFrom<U> for aya::programs::uprobe::UProbe where U: core::convert::Into<T>
  7102. pub type aya::programs::uprobe::UProbe::Error = core::convert::Infallible
  7103. pub fn aya::programs::uprobe::UProbe::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7104. impl<T, U> core::convert::TryInto<U> for aya::programs::uprobe::UProbe where U: core::convert::TryFrom<T>
  7105. pub type aya::programs::uprobe::UProbe::Error = <U as core::convert::TryFrom<T>>::Error
  7106. pub fn aya::programs::uprobe::UProbe::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7107. impl<T> core::any::Any for aya::programs::uprobe::UProbe where T: 'static + core::marker::Sized
  7108. pub fn aya::programs::uprobe::UProbe::type_id(&self) -> core::any::TypeId
  7109. impl<T> core::borrow::Borrow<T> for aya::programs::uprobe::UProbe where T: core::marker::Sized
  7110. pub fn aya::programs::uprobe::UProbe::borrow(&self) -> &T
  7111. impl<T> core::borrow::BorrowMut<T> for aya::programs::uprobe::UProbe where T: core::marker::Sized
  7112. pub fn aya::programs::uprobe::UProbe::borrow_mut(&mut self) -> &mut T
  7113. impl<T> core::convert::From<T> for aya::programs::uprobe::UProbe
  7114. pub fn aya::programs::uprobe::UProbe::from(t: T) -> T
  7115. pub struct aya::programs::Xdp
  7116. impl aya::programs::xdp::Xdp
  7117. pub fn aya::programs::xdp::Xdp::attach(&mut self, interface: &str, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7118. pub fn aya::programs::xdp::Xdp::attach_to_if_index(&mut self, if_index: u32, flags: aya::programs::xdp::XdpFlags) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7119. pub fn aya::programs::xdp::Xdp::attach_to_link(&mut self, link: aya::programs::xdp::XdpLink) -> core::result::Result<aya::programs::xdp::XdpLinkId, aya::programs::ProgramError>
  7120. pub fn aya::programs::xdp::Xdp::detach(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<(), aya::programs::ProgramError>
  7121. pub fn aya::programs::xdp::Xdp::from_pin<P: core::convert::AsRef<std::path::Path>>(path: P, attach_type: aya_obj::programs::xdp::XdpAttachType) -> core::result::Result<Self, aya::programs::ProgramError>
  7122. pub fn aya::programs::xdp::Xdp::load(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7123. pub fn aya::programs::xdp::Xdp::take_link(&mut self, link_id: aya::programs::xdp::XdpLinkId) -> core::result::Result<aya::programs::xdp::XdpLink, aya::programs::ProgramError>
  7124. impl aya::programs::xdp::Xdp
  7125. pub fn aya::programs::xdp::Xdp::fd(&self) -> core::result::Result<&aya::programs::ProgramFd, aya::programs::ProgramError>
  7126. impl aya::programs::xdp::Xdp
  7127. pub fn aya::programs::xdp::Xdp::info(&self) -> core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>
  7128. impl aya::programs::xdp::Xdp
  7129. pub fn aya::programs::xdp::Xdp::pin<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<(), aya::pin::PinError>
  7130. pub fn aya::programs::xdp::Xdp::unpin(self) -> core::result::Result<(), std::io::error::Error>
  7131. impl aya::programs::xdp::Xdp
  7132. pub fn aya::programs::xdp::Xdp::unload(&mut self) -> core::result::Result<(), aya::programs::ProgramError>
  7133. impl core::ops::drop::Drop for aya::programs::xdp::Xdp
  7134. pub fn aya::programs::xdp::Xdp::drop(&mut self)
  7135. impl<'a> core::convert::TryFrom<&'a aya::programs::Program> for &'a aya::programs::xdp::Xdp
  7136. pub type &'a aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7137. pub fn &'a aya::programs::xdp::Xdp::try_from(program: &'a aya::programs::Program) -> core::result::Result<&'a aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7138. impl<'a> core::convert::TryFrom<&'a mut aya::programs::Program> for &'a mut aya::programs::xdp::Xdp
  7139. pub type &'a mut aya::programs::xdp::Xdp::Error = aya::programs::ProgramError
  7140. pub fn &'a mut aya::programs::xdp::Xdp::try_from(program: &'a mut aya::programs::Program) -> core::result::Result<&'a mut aya::programs::xdp::Xdp, aya::programs::ProgramError>
  7141. impl core::fmt::Debug for aya::programs::xdp::Xdp
  7142. pub fn aya::programs::xdp::Xdp::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7143. impl core::marker::Send for aya::programs::xdp::Xdp
  7144. impl core::marker::Sync for aya::programs::xdp::Xdp
  7145. impl core::marker::Unpin for aya::programs::xdp::Xdp
  7146. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::Xdp
  7147. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::Xdp
  7148. impl<T, U> core::convert::Into<U> for aya::programs::xdp::Xdp where U: core::convert::From<T>
  7149. pub fn aya::programs::xdp::Xdp::into(self) -> U
  7150. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::Xdp where U: core::convert::Into<T>
  7151. pub type aya::programs::xdp::Xdp::Error = core::convert::Infallible
  7152. pub fn aya::programs::xdp::Xdp::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7153. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::Xdp where U: core::convert::TryFrom<T>
  7154. pub type aya::programs::xdp::Xdp::Error = <U as core::convert::TryFrom<T>>::Error
  7155. pub fn aya::programs::xdp::Xdp::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7156. impl<T> core::any::Any for aya::programs::xdp::Xdp where T: 'static + core::marker::Sized
  7157. pub fn aya::programs::xdp::Xdp::type_id(&self) -> core::any::TypeId
  7158. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::Xdp where T: core::marker::Sized
  7159. pub fn aya::programs::xdp::Xdp::borrow(&self) -> &T
  7160. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::Xdp where T: core::marker::Sized
  7161. pub fn aya::programs::xdp::Xdp::borrow_mut(&mut self) -> &mut T
  7162. impl<T> core::convert::From<T> for aya::programs::xdp::Xdp
  7163. pub fn aya::programs::xdp::Xdp::from(t: T) -> T
  7164. pub struct aya::programs::XdpFlags(_)
  7165. impl aya::programs::xdp::XdpFlags
  7166. pub const aya::programs::xdp::XdpFlags::DRV_MODE: Self
  7167. pub const aya::programs::xdp::XdpFlags::HW_MODE: Self
  7168. pub const aya::programs::xdp::XdpFlags::REPLACE: Self
  7169. pub const aya::programs::xdp::XdpFlags::SKB_MODE: Self
  7170. pub const aya::programs::xdp::XdpFlags::UPDATE_IF_NOEXIST: Self
  7171. impl aya::programs::xdp::XdpFlags
  7172. pub const fn aya::programs::xdp::XdpFlags::all() -> Self
  7173. pub const fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7174. pub const fn aya::programs::xdp::XdpFlags::complement(self) -> Self
  7175. pub const fn aya::programs::xdp::XdpFlags::contains(&self, other: Self) -> bool
  7176. pub const fn aya::programs::xdp::XdpFlags::difference(self, other: Self) -> Self
  7177. pub const fn aya::programs::xdp::XdpFlags::empty() -> Self
  7178. pub const fn aya::programs::xdp::XdpFlags::from_bits(bits: u32) -> core::option::Option<Self>
  7179. pub const fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> Self
  7180. pub const fn aya::programs::xdp::XdpFlags::from_bits_truncate(bits: u32) -> Self
  7181. pub fn aya::programs::xdp::XdpFlags::from_name(name: &str) -> core::option::Option<Self>
  7182. pub fn aya::programs::xdp::XdpFlags::insert(&mut self, other: Self)
  7183. pub const fn aya::programs::xdp::XdpFlags::intersection(self, other: Self) -> Self
  7184. pub const fn aya::programs::xdp::XdpFlags::intersects(&self, other: Self) -> bool
  7185. pub const fn aya::programs::xdp::XdpFlags::is_all(&self) -> bool
  7186. pub const fn aya::programs::xdp::XdpFlags::is_empty(&self) -> bool
  7187. pub fn aya::programs::xdp::XdpFlags::remove(&mut self, other: Self)
  7188. pub fn aya::programs::xdp::XdpFlags::set(&mut self, other: Self, value: bool)
  7189. pub const fn aya::programs::xdp::XdpFlags::symmetric_difference(self, other: Self) -> Self
  7190. pub fn aya::programs::xdp::XdpFlags::toggle(&mut self, other: Self)
  7191. pub const fn aya::programs::xdp::XdpFlags::union(self, other: Self) -> Self
  7192. impl aya::programs::xdp::XdpFlags
  7193. pub const fn aya::programs::xdp::XdpFlags::iter(&self) -> bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7194. pub const fn aya::programs::xdp::XdpFlags::iter_names(&self) -> bitflags::iter::IterNames<aya::programs::xdp::XdpFlags>
  7195. impl bitflags::traits::Flags for aya::programs::xdp::XdpFlags
  7196. pub type aya::programs::xdp::XdpFlags::Bits = u32
  7197. pub const aya::programs::xdp::XdpFlags::FLAGS: &'static [bitflags::traits::Flag<aya::programs::xdp::XdpFlags>]
  7198. pub fn aya::programs::xdp::XdpFlags::bits(&self) -> u32
  7199. pub fn aya::programs::xdp::XdpFlags::from_bits_retain(bits: u32) -> aya::programs::xdp::XdpFlags
  7200. impl bitflags::traits::PublicFlags for aya::programs::xdp::XdpFlags
  7201. pub type aya::programs::xdp::XdpFlags::Internal = InternalBitFlags
  7202. pub type aya::programs::xdp::XdpFlags::Primitive = u32
  7203. impl core::fmt::Binary for aya::programs::xdp::XdpFlags
  7204. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7205. impl core::fmt::LowerHex for aya::programs::xdp::XdpFlags
  7206. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7207. impl core::fmt::Octal for aya::programs::xdp::XdpFlags
  7208. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7209. impl core::fmt::UpperHex for aya::programs::xdp::XdpFlags
  7210. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7211. impl core::iter::traits::collect::Extend<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7212. pub fn aya::programs::xdp::XdpFlags::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  7213. impl core::iter::traits::collect::FromIterator<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7214. pub fn aya::programs::xdp::XdpFlags::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  7215. impl core::iter::traits::collect::IntoIterator for aya::programs::xdp::XdpFlags
  7216. pub type aya::programs::xdp::XdpFlags::IntoIter = bitflags::iter::Iter<aya::programs::xdp::XdpFlags>
  7217. pub type aya::programs::xdp::XdpFlags::Item = aya::programs::xdp::XdpFlags
  7218. pub fn aya::programs::xdp::XdpFlags::into_iter(self) -> Self::IntoIter
  7219. impl core::ops::arith::Sub<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7220. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7221. pub fn aya::programs::xdp::XdpFlags::sub(self, other: Self) -> Self
  7222. impl core::ops::arith::SubAssign<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7223. pub fn aya::programs::xdp::XdpFlags::sub_assign(&mut self, other: Self)
  7224. impl core::ops::bit::BitAnd<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7225. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7226. pub fn aya::programs::xdp::XdpFlags::bitand(self, other: Self) -> Self
  7227. impl core::ops::bit::BitAndAssign<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7228. pub fn aya::programs::xdp::XdpFlags::bitand_assign(&mut self, other: Self)
  7229. impl core::ops::bit::BitOr<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7230. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7231. pub fn aya::programs::xdp::XdpFlags::bitor(self, other: aya::programs::xdp::XdpFlags) -> Self
  7232. impl core::ops::bit::BitOrAssign<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7233. pub fn aya::programs::xdp::XdpFlags::bitor_assign(&mut self, other: Self)
  7234. impl core::ops::bit::BitXor<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7235. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7236. pub fn aya::programs::xdp::XdpFlags::bitxor(self, other: Self) -> Self
  7237. impl core::ops::bit::BitXorAssign<aya::programs::xdp::XdpFlags> for aya::programs::xdp::XdpFlags
  7238. pub fn aya::programs::xdp::XdpFlags::bitxor_assign(&mut self, other: Self)
  7239. impl core::ops::bit::Not for aya::programs::xdp::XdpFlags
  7240. pub type aya::programs::xdp::XdpFlags::Output = aya::programs::xdp::XdpFlags
  7241. pub fn aya::programs::xdp::XdpFlags::not(self) -> Self
  7242. impl core::clone::Clone for aya::programs::xdp::XdpFlags
  7243. pub fn aya::programs::xdp::XdpFlags::clone(&self) -> aya::programs::xdp::XdpFlags
  7244. impl core::default::Default for aya::programs::xdp::XdpFlags
  7245. pub fn aya::programs::xdp::XdpFlags::default() -> aya::programs::xdp::XdpFlags
  7246. impl core::fmt::Debug for aya::programs::xdp::XdpFlags
  7247. pub fn aya::programs::xdp::XdpFlags::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7248. impl core::marker::Copy for aya::programs::xdp::XdpFlags
  7249. impl core::marker::Send for aya::programs::xdp::XdpFlags
  7250. impl core::marker::Sync for aya::programs::xdp::XdpFlags
  7251. impl core::marker::Unpin for aya::programs::xdp::XdpFlags
  7252. impl core::panic::unwind_safe::RefUnwindSafe for aya::programs::xdp::XdpFlags
  7253. impl core::panic::unwind_safe::UnwindSafe for aya::programs::xdp::XdpFlags
  7254. impl<T, U> core::convert::Into<U> for aya::programs::xdp::XdpFlags where U: core::convert::From<T>
  7255. pub fn aya::programs::xdp::XdpFlags::into(self) -> U
  7256. impl<T, U> core::convert::TryFrom<U> for aya::programs::xdp::XdpFlags where U: core::convert::Into<T>
  7257. pub type aya::programs::xdp::XdpFlags::Error = core::convert::Infallible
  7258. pub fn aya::programs::xdp::XdpFlags::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7259. impl<T, U> core::convert::TryInto<U> for aya::programs::xdp::XdpFlags where U: core::convert::TryFrom<T>
  7260. pub type aya::programs::xdp::XdpFlags::Error = <U as core::convert::TryFrom<T>>::Error
  7261. pub fn aya::programs::xdp::XdpFlags::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7262. impl<T> alloc::borrow::ToOwned for aya::programs::xdp::XdpFlags where T: core::clone::Clone
  7263. pub type aya::programs::xdp::XdpFlags::Owned = T
  7264. pub fn aya::programs::xdp::XdpFlags::clone_into(&self, target: &mut T)
  7265. pub fn aya::programs::xdp::XdpFlags::to_owned(&self) -> T
  7266. impl<T> core::any::Any for aya::programs::xdp::XdpFlags where T: 'static + core::marker::Sized
  7267. pub fn aya::programs::xdp::XdpFlags::type_id(&self) -> core::any::TypeId
  7268. impl<T> core::borrow::Borrow<T> for aya::programs::xdp::XdpFlags where T: core::marker::Sized
  7269. pub fn aya::programs::xdp::XdpFlags::borrow(&self) -> &T
  7270. impl<T> core::borrow::BorrowMut<T> for aya::programs::xdp::XdpFlags where T: core::marker::Sized
  7271. pub fn aya::programs::xdp::XdpFlags::borrow_mut(&mut self) -> &mut T
  7272. impl<T> core::convert::From<T> for aya::programs::xdp::XdpFlags
  7273. pub fn aya::programs::xdp::XdpFlags::from(t: T) -> T
  7274. pub trait aya::programs::Link: core::fmt::Debug + 'static
  7275. pub type aya::programs::Link::Id: core::fmt::Debug + core::hash::Hash + core::cmp::Eq + core::cmp::PartialEq
  7276. pub fn aya::programs::Link::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7277. pub fn aya::programs::Link::id(&self) -> Self::Id
  7278. impl aya::programs::links::Link for aya::programs::cgroup_device::CgroupDeviceLink
  7279. pub type aya::programs::cgroup_device::CgroupDeviceLink::Id = aya::programs::cgroup_device::CgroupDeviceLinkId
  7280. pub fn aya::programs::cgroup_device::CgroupDeviceLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7281. pub fn aya::programs::cgroup_device::CgroupDeviceLink::id(&self) -> Self::Id
  7282. impl aya::programs::links::Link for aya::programs::cgroup_skb::CgroupSkbLink
  7283. pub type aya::programs::cgroup_skb::CgroupSkbLink::Id = aya::programs::cgroup_skb::CgroupSkbLinkId
  7284. pub fn aya::programs::cgroup_skb::CgroupSkbLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7285. pub fn aya::programs::cgroup_skb::CgroupSkbLink::id(&self) -> Self::Id
  7286. impl aya::programs::links::Link for aya::programs::cgroup_sock::CgroupSockLink
  7287. pub type aya::programs::cgroup_sock::CgroupSockLink::Id = aya::programs::cgroup_sock::CgroupSockLinkId
  7288. pub fn aya::programs::cgroup_sock::CgroupSockLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7289. pub fn aya::programs::cgroup_sock::CgroupSockLink::id(&self) -> Self::Id
  7290. impl aya::programs::links::Link for aya::programs::cgroup_sock_addr::CgroupSockAddrLink
  7291. pub type aya::programs::cgroup_sock_addr::CgroupSockAddrLink::Id = aya::programs::cgroup_sock_addr::CgroupSockAddrLinkId
  7292. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7293. pub fn aya::programs::cgroup_sock_addr::CgroupSockAddrLink::id(&self) -> Self::Id
  7294. impl aya::programs::links::Link for aya::programs::cgroup_sockopt::CgroupSockoptLink
  7295. pub type aya::programs::cgroup_sockopt::CgroupSockoptLink::Id = aya::programs::cgroup_sockopt::CgroupSockoptLinkId
  7296. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7297. pub fn aya::programs::cgroup_sockopt::CgroupSockoptLink::id(&self) -> Self::Id
  7298. impl aya::programs::links::Link for aya::programs::cgroup_sysctl::CgroupSysctlLink
  7299. pub type aya::programs::cgroup_sysctl::CgroupSysctlLink::Id = aya::programs::cgroup_sysctl::CgroupSysctlLinkId
  7300. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7301. pub fn aya::programs::cgroup_sysctl::CgroupSysctlLink::id(&self) -> Self::Id
  7302. impl aya::programs::links::Link for aya::programs::extension::ExtensionLink
  7303. pub type aya::programs::extension::ExtensionLink::Id = aya::programs::extension::ExtensionLinkId
  7304. pub fn aya::programs::extension::ExtensionLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7305. pub fn aya::programs::extension::ExtensionLink::id(&self) -> Self::Id
  7306. impl aya::programs::links::Link for aya::programs::fentry::FEntryLink
  7307. pub type aya::programs::fentry::FEntryLink::Id = aya::programs::fentry::FEntryLinkId
  7308. pub fn aya::programs::fentry::FEntryLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7309. pub fn aya::programs::fentry::FEntryLink::id(&self) -> Self::Id
  7310. impl aya::programs::links::Link for aya::programs::fexit::FExitLink
  7311. pub type aya::programs::fexit::FExitLink::Id = aya::programs::fexit::FExitLinkId
  7312. pub fn aya::programs::fexit::FExitLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7313. pub fn aya::programs::fexit::FExitLink::id(&self) -> Self::Id
  7314. impl aya::programs::links::Link for aya::programs::kprobe::KProbeLink
  7315. pub type aya::programs::kprobe::KProbeLink::Id = aya::programs::kprobe::KProbeLinkId
  7316. pub fn aya::programs::kprobe::KProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7317. pub fn aya::programs::kprobe::KProbeLink::id(&self) -> Self::Id
  7318. impl aya::programs::links::Link for aya::programs::links::FdLink
  7319. pub type aya::programs::links::FdLink::Id = aya::programs::links::FdLinkId
  7320. pub fn aya::programs::links::FdLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7321. pub fn aya::programs::links::FdLink::id(&self) -> Self::Id
  7322. impl aya::programs::links::Link for aya::programs::links::ProgAttachLink
  7323. pub type aya::programs::links::ProgAttachLink::Id = aya::programs::links::ProgAttachLinkId
  7324. pub fn aya::programs::links::ProgAttachLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7325. pub fn aya::programs::links::ProgAttachLink::id(&self) -> Self::Id
  7326. impl aya::programs::links::Link for aya::programs::lirc_mode2::LircLink
  7327. pub type aya::programs::lirc_mode2::LircLink::Id = aya::programs::lirc_mode2::LircLinkId
  7328. pub fn aya::programs::lirc_mode2::LircLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7329. pub fn aya::programs::lirc_mode2::LircLink::id(&self) -> Self::Id
  7330. impl aya::programs::links::Link for aya::programs::lsm::LsmLink
  7331. pub type aya::programs::lsm::LsmLink::Id = aya::programs::lsm::LsmLinkId
  7332. pub fn aya::programs::lsm::LsmLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7333. pub fn aya::programs::lsm::LsmLink::id(&self) -> Self::Id
  7334. impl aya::programs::links::Link for aya::programs::perf_attach::PerfLink
  7335. pub type aya::programs::perf_attach::PerfLink::Id = aya::programs::perf_attach::PerfLinkId
  7336. pub fn aya::programs::perf_attach::PerfLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7337. pub fn aya::programs::perf_attach::PerfLink::id(&self) -> Self::Id
  7338. impl aya::programs::links::Link for aya::programs::perf_event::PerfEventLink
  7339. pub type aya::programs::perf_event::PerfEventLink::Id = aya::programs::perf_event::PerfEventLinkId
  7340. pub fn aya::programs::perf_event::PerfEventLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7341. pub fn aya::programs::perf_event::PerfEventLink::id(&self) -> Self::Id
  7342. impl aya::programs::links::Link for aya::programs::tc::SchedClassifierLink
  7343. pub type aya::programs::tc::SchedClassifierLink::Id = aya::programs::tc::SchedClassifierLinkId
  7344. pub fn aya::programs::tc::SchedClassifierLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7345. pub fn aya::programs::tc::SchedClassifierLink::id(&self) -> Self::Id
  7346. impl aya::programs::links::Link for aya::programs::tp_btf::BtfTracePointLink
  7347. pub type aya::programs::tp_btf::BtfTracePointLink::Id = aya::programs::tp_btf::BtfTracePointLinkId
  7348. pub fn aya::programs::tp_btf::BtfTracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7349. pub fn aya::programs::tp_btf::BtfTracePointLink::id(&self) -> Self::Id
  7350. impl aya::programs::links::Link for aya::programs::trace_point::TracePointLink
  7351. pub type aya::programs::trace_point::TracePointLink::Id = aya::programs::trace_point::TracePointLinkId
  7352. pub fn aya::programs::trace_point::TracePointLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7353. pub fn aya::programs::trace_point::TracePointLink::id(&self) -> Self::Id
  7354. impl aya::programs::links::Link for aya::programs::uprobe::UProbeLink
  7355. pub type aya::programs::uprobe::UProbeLink::Id = aya::programs::uprobe::UProbeLinkId
  7356. pub fn aya::programs::uprobe::UProbeLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7357. pub fn aya::programs::uprobe::UProbeLink::id(&self) -> Self::Id
  7358. impl aya::programs::links::Link for aya::programs::xdp::XdpLink
  7359. pub type aya::programs::xdp::XdpLink::Id = aya::programs::xdp::XdpLinkId
  7360. pub fn aya::programs::xdp::XdpLink::detach(self) -> core::result::Result<(), aya::programs::ProgramError>
  7361. pub fn aya::programs::xdp::XdpLink::id(&self) -> Self::Id
  7362. pub fn aya::programs::loaded_programs() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>>
  7363. pub mod aya::util
  7364. pub struct aya::util::KernelVersion
  7365. impl aya::util::KernelVersion
  7366. pub fn aya::util::KernelVersion::current() -> core::result::Result<Self, impl core::error::Error>
  7367. pub fn aya::util::KernelVersion::new(major: u8, minor: u8, patch: u16) -> Self
  7368. impl core::clone::Clone for aya::util::KernelVersion
  7369. pub fn aya::util::KernelVersion::clone(&self) -> aya::util::KernelVersion
  7370. impl core::cmp::Eq for aya::util::KernelVersion
  7371. impl core::cmp::PartialEq<aya::util::KernelVersion> for aya::util::KernelVersion
  7372. pub fn aya::util::KernelVersion::eq(&self, other: &aya::util::KernelVersion) -> bool
  7373. impl core::cmp::PartialOrd<aya::util::KernelVersion> for aya::util::KernelVersion
  7374. pub fn aya::util::KernelVersion::partial_cmp(&self, other: &aya::util::KernelVersion) -> core::option::Option<core::cmp::Ordering>
  7375. impl core::fmt::Debug for aya::util::KernelVersion
  7376. pub fn aya::util::KernelVersion::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7377. impl core::marker::Copy for aya::util::KernelVersion
  7378. impl core::marker::StructuralEq for aya::util::KernelVersion
  7379. impl core::marker::StructuralPartialEq for aya::util::KernelVersion
  7380. impl core::marker::Send for aya::util::KernelVersion
  7381. impl core::marker::Sync for aya::util::KernelVersion
  7382. impl core::marker::Unpin for aya::util::KernelVersion
  7383. impl core::panic::unwind_safe::RefUnwindSafe for aya::util::KernelVersion
  7384. impl core::panic::unwind_safe::UnwindSafe for aya::util::KernelVersion
  7385. impl<T, U> core::convert::Into<U> for aya::util::KernelVersion where U: core::convert::From<T>
  7386. pub fn aya::util::KernelVersion::into(self) -> U
  7387. impl<T, U> core::convert::TryFrom<U> for aya::util::KernelVersion where U: core::convert::Into<T>
  7388. pub type aya::util::KernelVersion::Error = core::convert::Infallible
  7389. pub fn aya::util::KernelVersion::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7390. impl<T, U> core::convert::TryInto<U> for aya::util::KernelVersion where U: core::convert::TryFrom<T>
  7391. pub type aya::util::KernelVersion::Error = <U as core::convert::TryFrom<T>>::Error
  7392. pub fn aya::util::KernelVersion::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7393. impl<T> alloc::borrow::ToOwned for aya::util::KernelVersion where T: core::clone::Clone
  7394. pub type aya::util::KernelVersion::Owned = T
  7395. pub fn aya::util::KernelVersion::clone_into(&self, target: &mut T)
  7396. pub fn aya::util::KernelVersion::to_owned(&self) -> T
  7397. impl<T> core::any::Any for aya::util::KernelVersion where T: 'static + core::marker::Sized
  7398. pub fn aya::util::KernelVersion::type_id(&self) -> core::any::TypeId
  7399. impl<T> core::borrow::Borrow<T> for aya::util::KernelVersion where T: core::marker::Sized
  7400. pub fn aya::util::KernelVersion::borrow(&self) -> &T
  7401. impl<T> core::borrow::BorrowMut<T> for aya::util::KernelVersion where T: core::marker::Sized
  7402. pub fn aya::util::KernelVersion::borrow_mut(&mut self) -> &mut T
  7403. impl<T> core::convert::From<T> for aya::util::KernelVersion
  7404. pub fn aya::util::KernelVersion::from(t: T) -> T
  7405. pub fn aya::util::kernel_symbols() -> core::result::Result<alloc::collections::btree::map::BTreeMap<u64, alloc::string::String>, std::io::error::Error>
  7406. pub fn aya::util::nr_cpus() -> core::result::Result<usize, std::io::error::Error>
  7407. pub fn aya::util::online_cpus() -> core::result::Result<alloc::vec::Vec<u32>, std::io::error::Error>
  7408. pub fn aya::util::syscall_prefix() -> core::result::Result<&'static str, std::io::error::Error>
  7409. pub macro aya::include_bytes_aligned!
  7410. pub enum aya::BpfError
  7411. pub aya::BpfError::BtfError(aya_obj::btf::btf::BtfError)
  7412. pub aya::BpfError::BtfRelocationError(aya_obj::btf::relocation::BtfRelocationError)
  7413. pub aya::BpfError::FileError
  7414. pub aya::BpfError::FileError::error: std::io::error::Error
  7415. pub aya::BpfError::FileError::path: std::path::PathBuf
  7416. pub aya::BpfError::MapError(aya::maps::MapError)
  7417. pub aya::BpfError::NoBTF
  7418. pub aya::BpfError::ParseError(aya_obj::obj::ParseError)
  7419. pub aya::BpfError::ProgramError(aya::programs::ProgramError)
  7420. pub aya::BpfError::RelocationError(aya_obj::relocation::BpfRelocationError)
  7421. pub aya::BpfError::UnexpectedPinningType
  7422. pub aya::BpfError::UnexpectedPinningType::name: u32
  7423. impl core::convert::From<aya::maps::MapError> for aya::BpfError
  7424. pub fn aya::BpfError::from(source: aya::maps::MapError) -> Self
  7425. impl core::convert::From<aya::programs::ProgramError> for aya::BpfError
  7426. pub fn aya::BpfError::from(source: aya::programs::ProgramError) -> Self
  7427. impl core::convert::From<aya_obj::btf::btf::BtfError> for aya::BpfError
  7428. pub fn aya::BpfError::from(source: aya_obj::btf::btf::BtfError) -> Self
  7429. impl core::convert::From<aya_obj::btf::relocation::BtfRelocationError> for aya::BpfError
  7430. pub fn aya::BpfError::from(source: aya_obj::btf::relocation::BtfRelocationError) -> Self
  7431. impl core::convert::From<aya_obj::obj::ParseError> for aya::BpfError
  7432. pub fn aya::BpfError::from(source: aya_obj::obj::ParseError) -> Self
  7433. impl core::convert::From<aya_obj::relocation::BpfRelocationError> for aya::BpfError
  7434. pub fn aya::BpfError::from(source: aya_obj::relocation::BpfRelocationError) -> Self
  7435. impl core::error::Error for aya::BpfError
  7436. pub fn aya::BpfError::source(&self) -> core::option::Option<&(dyn core::error::Error + 'static)>
  7437. impl core::fmt::Display for aya::BpfError
  7438. pub fn aya::BpfError::fmt(&self, __formatter: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7439. impl core::fmt::Debug for aya::BpfError
  7440. pub fn aya::BpfError::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7441. impl core::marker::Send for aya::BpfError
  7442. impl core::marker::Sync for aya::BpfError
  7443. impl core::marker::Unpin for aya::BpfError
  7444. impl !core::panic::unwind_safe::RefUnwindSafe for aya::BpfError
  7445. impl !core::panic::unwind_safe::UnwindSafe for aya::BpfError
  7446. impl<T, U> core::convert::Into<U> for aya::BpfError where U: core::convert::From<T>
  7447. pub fn aya::BpfError::into(self) -> U
  7448. impl<T, U> core::convert::TryFrom<U> for aya::BpfError where U: core::convert::Into<T>
  7449. pub type aya::BpfError::Error = core::convert::Infallible
  7450. pub fn aya::BpfError::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7451. impl<T, U> core::convert::TryInto<U> for aya::BpfError where U: core::convert::TryFrom<T>
  7452. pub type aya::BpfError::Error = <U as core::convert::TryFrom<T>>::Error
  7453. pub fn aya::BpfError::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7454. impl<T> alloc::string::ToString for aya::BpfError where T: core::fmt::Display + core::marker::Sized
  7455. pub fn aya::BpfError::to_string(&self) -> alloc::string::String
  7456. impl<T> core::any::Any for aya::BpfError where T: 'static + core::marker::Sized
  7457. pub fn aya::BpfError::type_id(&self) -> core::any::TypeId
  7458. impl<T> core::borrow::Borrow<T> for aya::BpfError where T: core::marker::Sized
  7459. pub fn aya::BpfError::borrow(&self) -> &T
  7460. impl<T> core::borrow::BorrowMut<T> for aya::BpfError where T: core::marker::Sized
  7461. pub fn aya::BpfError::borrow_mut(&mut self) -> &mut T
  7462. impl<T> core::convert::From<T> for aya::BpfError
  7463. pub fn aya::BpfError::from(t: T) -> T
  7464. pub struct aya::Bpf
  7465. impl aya::Bpf
  7466. pub fn aya::Bpf::load(data: &[u8]) -> core::result::Result<Self, aya::BpfError>
  7467. pub fn aya::Bpf::load_file<P: core::convert::AsRef<std::path::Path>>(path: P) -> core::result::Result<Self, aya::BpfError>
  7468. pub fn aya::Bpf::map(&self, name: &str) -> core::option::Option<&aya::maps::Map>
  7469. pub fn aya::Bpf::map_mut(&mut self, name: &str) -> core::option::Option<&mut aya::maps::Map>
  7470. pub fn aya::Bpf::maps(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::maps::Map)>
  7471. pub fn aya::Bpf::maps_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::maps::Map)>
  7472. pub fn aya::Bpf::program(&self, name: &str) -> core::option::Option<&aya::programs::Program>
  7473. pub fn aya::Bpf::program_mut(&mut self, name: &str) -> core::option::Option<&mut aya::programs::Program>
  7474. pub fn aya::Bpf::programs(&self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &aya::programs::Program)>
  7475. pub fn aya::Bpf::programs_mut(&mut self) -> impl core::iter::traits::iterator::Iterator<Item = (&str, &mut aya::programs::Program)>
  7476. pub fn aya::Bpf::take_map(&mut self, name: &str) -> core::option::Option<aya::maps::Map>
  7477. impl core::fmt::Debug for aya::Bpf
  7478. pub fn aya::Bpf::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7479. impl core::marker::Send for aya::Bpf
  7480. impl core::marker::Sync for aya::Bpf
  7481. impl core::marker::Unpin for aya::Bpf
  7482. impl core::panic::unwind_safe::RefUnwindSafe for aya::Bpf
  7483. impl core::panic::unwind_safe::UnwindSafe for aya::Bpf
  7484. impl<T, U> core::convert::Into<U> for aya::Bpf where U: core::convert::From<T>
  7485. pub fn aya::Bpf::into(self) -> U
  7486. impl<T, U> core::convert::TryFrom<U> for aya::Bpf where U: core::convert::Into<T>
  7487. pub type aya::Bpf::Error = core::convert::Infallible
  7488. pub fn aya::Bpf::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7489. impl<T, U> core::convert::TryInto<U> for aya::Bpf where U: core::convert::TryFrom<T>
  7490. pub type aya::Bpf::Error = <U as core::convert::TryFrom<T>>::Error
  7491. pub fn aya::Bpf::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7492. impl<T> core::any::Any for aya::Bpf where T: 'static + core::marker::Sized
  7493. pub fn aya::Bpf::type_id(&self) -> core::any::TypeId
  7494. impl<T> core::borrow::Borrow<T> for aya::Bpf where T: core::marker::Sized
  7495. pub fn aya::Bpf::borrow(&self) -> &T
  7496. impl<T> core::borrow::BorrowMut<T> for aya::Bpf where T: core::marker::Sized
  7497. pub fn aya::Bpf::borrow_mut(&mut self) -> &mut T
  7498. impl<T> core::convert::From<T> for aya::Bpf
  7499. pub fn aya::Bpf::from(t: T) -> T
  7500. pub struct aya::BpfLoader<'a>
  7501. impl<'a> aya::BpfLoader<'a>
  7502. pub fn aya::BpfLoader<'a>::allow_unsupported_maps(&mut self) -> &mut aya::BpfLoader<'a>
  7503. pub fn aya::BpfLoader<'a>::btf(&mut self, btf: core::option::Option<&'a aya_obj::btf::btf::Btf>) -> &mut aya::BpfLoader<'a>
  7504. pub fn aya::BpfLoader<'a>::extension(&mut self, name: &'a str) -> &mut aya::BpfLoader<'a>
  7505. pub fn aya::BpfLoader<'a>::load(&mut self, data: &[u8]) -> core::result::Result<aya::Bpf, aya::BpfError>
  7506. pub fn aya::BpfLoader<'a>::load_file<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> core::result::Result<aya::Bpf, aya::BpfError>
  7507. pub fn aya::BpfLoader<'a>::map_pin_path<P: core::convert::AsRef<std::path::Path>>(&mut self, path: P) -> &mut aya::BpfLoader<'a>
  7508. pub fn aya::BpfLoader<'a>::new() -> Self
  7509. pub fn aya::BpfLoader<'a>::set_global<T: core::convert::Into<aya::GlobalData<'a>>>(&mut self, name: &'a str, value: T, must_exist: bool) -> &mut aya::BpfLoader<'a>
  7510. pub fn aya::BpfLoader<'a>::set_max_entries(&mut self, name: &'a str, size: u32) -> &mut aya::BpfLoader<'a>
  7511. pub fn aya::BpfLoader<'a>::verifier_log_level(&mut self, level: aya::VerifierLogLevel) -> &mut aya::BpfLoader<'a>
  7512. impl core::default::Default for aya::BpfLoader<'_>
  7513. pub fn aya::BpfLoader<'_>::default() -> Self
  7514. impl<'a> core::fmt::Debug for aya::BpfLoader<'a>
  7515. pub fn aya::BpfLoader<'a>::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7516. impl<'a> core::marker::Send for aya::BpfLoader<'a>
  7517. impl<'a> core::marker::Sync for aya::BpfLoader<'a>
  7518. impl<'a> core::marker::Unpin for aya::BpfLoader<'a>
  7519. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::BpfLoader<'a>
  7520. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::BpfLoader<'a>
  7521. impl<T, U> core::convert::Into<U> for aya::BpfLoader<'a> where U: core::convert::From<T>
  7522. pub fn aya::BpfLoader<'a>::into(self) -> U
  7523. impl<T, U> core::convert::TryFrom<U> for aya::BpfLoader<'a> where U: core::convert::Into<T>
  7524. pub type aya::BpfLoader<'a>::Error = core::convert::Infallible
  7525. pub fn aya::BpfLoader<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7526. impl<T, U> core::convert::TryInto<U> for aya::BpfLoader<'a> where U: core::convert::TryFrom<T>
  7527. pub type aya::BpfLoader<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  7528. pub fn aya::BpfLoader<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7529. impl<T> core::any::Any for aya::BpfLoader<'a> where T: 'static + core::marker::Sized
  7530. pub fn aya::BpfLoader<'a>::type_id(&self) -> core::any::TypeId
  7531. impl<T> core::borrow::Borrow<T> for aya::BpfLoader<'a> where T: core::marker::Sized
  7532. pub fn aya::BpfLoader<'a>::borrow(&self) -> &T
  7533. impl<T> core::borrow::BorrowMut<T> for aya::BpfLoader<'a> where T: core::marker::Sized
  7534. pub fn aya::BpfLoader<'a>::borrow_mut(&mut self) -> &mut T
  7535. impl<T> core::convert::From<T> for aya::BpfLoader<'a>
  7536. pub fn aya::BpfLoader<'a>::from(t: T) -> T
  7537. pub struct aya::GlobalData<'a>
  7538. impl<'a, T: aya::Pod> core::convert::From<&'a T> for aya::GlobalData<'a>
  7539. pub fn aya::GlobalData<'a>::from(v: &'a T) -> Self
  7540. impl<'a, T: aya::Pod> core::convert::From<&'a [T]> for aya::GlobalData<'a>
  7541. pub fn aya::GlobalData<'a>::from(s: &'a [T]) -> Self
  7542. impl<'a> core::marker::Send for aya::GlobalData<'a>
  7543. impl<'a> core::marker::Sync for aya::GlobalData<'a>
  7544. impl<'a> core::marker::Unpin for aya::GlobalData<'a>
  7545. impl<'a> core::panic::unwind_safe::RefUnwindSafe for aya::GlobalData<'a>
  7546. impl<'a> core::panic::unwind_safe::UnwindSafe for aya::GlobalData<'a>
  7547. impl<T, U> core::convert::Into<U> for aya::GlobalData<'a> where U: core::convert::From<T>
  7548. pub fn aya::GlobalData<'a>::into(self) -> U
  7549. impl<T, U> core::convert::TryFrom<U> for aya::GlobalData<'a> where U: core::convert::Into<T>
  7550. pub type aya::GlobalData<'a>::Error = core::convert::Infallible
  7551. pub fn aya::GlobalData<'a>::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7552. impl<T, U> core::convert::TryInto<U> for aya::GlobalData<'a> where U: core::convert::TryFrom<T>
  7553. pub type aya::GlobalData<'a>::Error = <U as core::convert::TryFrom<T>>::Error
  7554. pub fn aya::GlobalData<'a>::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7555. impl<T> core::any::Any for aya::GlobalData<'a> where T: 'static + core::marker::Sized
  7556. pub fn aya::GlobalData<'a>::type_id(&self) -> core::any::TypeId
  7557. impl<T> core::borrow::Borrow<T> for aya::GlobalData<'a> where T: core::marker::Sized
  7558. pub fn aya::GlobalData<'a>::borrow(&self) -> &T
  7559. impl<T> core::borrow::BorrowMut<T> for aya::GlobalData<'a> where T: core::marker::Sized
  7560. pub fn aya::GlobalData<'a>::borrow_mut(&mut self) -> &mut T
  7561. impl<T> core::convert::From<T> for aya::GlobalData<'a>
  7562. pub fn aya::GlobalData<'a>::from(t: T) -> T
  7563. pub struct aya::VerifierLogLevel(_)
  7564. impl aya::VerifierLogLevel
  7565. pub const aya::VerifierLogLevel::DEBUG: Self
  7566. pub const aya::VerifierLogLevel::DISABLE: Self
  7567. pub const aya::VerifierLogLevel::STATS: Self
  7568. pub const aya::VerifierLogLevel::VERBOSE: Self
  7569. impl aya::VerifierLogLevel
  7570. pub const fn aya::VerifierLogLevel::all() -> Self
  7571. pub const fn aya::VerifierLogLevel::bits(&self) -> u32
  7572. pub const fn aya::VerifierLogLevel::complement(self) -> Self
  7573. pub const fn aya::VerifierLogLevel::contains(&self, other: Self) -> bool
  7574. pub const fn aya::VerifierLogLevel::difference(self, other: Self) -> Self
  7575. pub const fn aya::VerifierLogLevel::empty() -> Self
  7576. pub const fn aya::VerifierLogLevel::from_bits(bits: u32) -> core::option::Option<Self>
  7577. pub const fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> Self
  7578. pub const fn aya::VerifierLogLevel::from_bits_truncate(bits: u32) -> Self
  7579. pub fn aya::VerifierLogLevel::from_name(name: &str) -> core::option::Option<Self>
  7580. pub fn aya::VerifierLogLevel::insert(&mut self, other: Self)
  7581. pub const fn aya::VerifierLogLevel::intersection(self, other: Self) -> Self
  7582. pub const fn aya::VerifierLogLevel::intersects(&self, other: Self) -> bool
  7583. pub const fn aya::VerifierLogLevel::is_all(&self) -> bool
  7584. pub const fn aya::VerifierLogLevel::is_empty(&self) -> bool
  7585. pub fn aya::VerifierLogLevel::remove(&mut self, other: Self)
  7586. pub fn aya::VerifierLogLevel::set(&mut self, other: Self, value: bool)
  7587. pub const fn aya::VerifierLogLevel::symmetric_difference(self, other: Self) -> Self
  7588. pub fn aya::VerifierLogLevel::toggle(&mut self, other: Self)
  7589. pub const fn aya::VerifierLogLevel::union(self, other: Self) -> Self
  7590. impl aya::VerifierLogLevel
  7591. pub const fn aya::VerifierLogLevel::iter(&self) -> bitflags::iter::Iter<aya::VerifierLogLevel>
  7592. pub const fn aya::VerifierLogLevel::iter_names(&self) -> bitflags::iter::IterNames<aya::VerifierLogLevel>
  7593. impl bitflags::traits::Flags for aya::VerifierLogLevel
  7594. pub type aya::VerifierLogLevel::Bits = u32
  7595. pub const aya::VerifierLogLevel::FLAGS: &'static [bitflags::traits::Flag<aya::VerifierLogLevel>]
  7596. pub fn aya::VerifierLogLevel::bits(&self) -> u32
  7597. pub fn aya::VerifierLogLevel::from_bits_retain(bits: u32) -> aya::VerifierLogLevel
  7598. impl bitflags::traits::PublicFlags for aya::VerifierLogLevel
  7599. pub type aya::VerifierLogLevel::Internal = InternalBitFlags
  7600. pub type aya::VerifierLogLevel::Primitive = u32
  7601. impl core::default::Default for aya::VerifierLogLevel
  7602. pub fn aya::VerifierLogLevel::default() -> Self
  7603. impl core::fmt::Binary for aya::VerifierLogLevel
  7604. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7605. impl core::fmt::LowerHex for aya::VerifierLogLevel
  7606. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7607. impl core::fmt::Octal for aya::VerifierLogLevel
  7608. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7609. impl core::fmt::UpperHex for aya::VerifierLogLevel
  7610. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7611. impl core::iter::traits::collect::Extend<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7612. pub fn aya::VerifierLogLevel::extend<T: core::iter::traits::collect::IntoIterator<Item = Self>>(&mut self, iterator: T)
  7613. impl core::iter::traits::collect::FromIterator<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7614. pub fn aya::VerifierLogLevel::from_iter<T: core::iter::traits::collect::IntoIterator<Item = Self>>(iterator: T) -> Self
  7615. impl core::iter::traits::collect::IntoIterator for aya::VerifierLogLevel
  7616. pub type aya::VerifierLogLevel::IntoIter = bitflags::iter::Iter<aya::VerifierLogLevel>
  7617. pub type aya::VerifierLogLevel::Item = aya::VerifierLogLevel
  7618. pub fn aya::VerifierLogLevel::into_iter(self) -> Self::IntoIter
  7619. impl core::ops::arith::Sub<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7620. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7621. pub fn aya::VerifierLogLevel::sub(self, other: Self) -> Self
  7622. impl core::ops::arith::SubAssign<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7623. pub fn aya::VerifierLogLevel::sub_assign(&mut self, other: Self)
  7624. impl core::ops::bit::BitAnd<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7625. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7626. pub fn aya::VerifierLogLevel::bitand(self, other: Self) -> Self
  7627. impl core::ops::bit::BitAndAssign<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7628. pub fn aya::VerifierLogLevel::bitand_assign(&mut self, other: Self)
  7629. impl core::ops::bit::BitOr<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7630. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7631. pub fn aya::VerifierLogLevel::bitor(self, other: aya::VerifierLogLevel) -> Self
  7632. impl core::ops::bit::BitOrAssign<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7633. pub fn aya::VerifierLogLevel::bitor_assign(&mut self, other: Self)
  7634. impl core::ops::bit::BitXor<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7635. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7636. pub fn aya::VerifierLogLevel::bitxor(self, other: Self) -> Self
  7637. impl core::ops::bit::BitXorAssign<aya::VerifierLogLevel> for aya::VerifierLogLevel
  7638. pub fn aya::VerifierLogLevel::bitxor_assign(&mut self, other: Self)
  7639. impl core::ops::bit::Not for aya::VerifierLogLevel
  7640. pub type aya::VerifierLogLevel::Output = aya::VerifierLogLevel
  7641. pub fn aya::VerifierLogLevel::not(self) -> Self
  7642. impl core::clone::Clone for aya::VerifierLogLevel
  7643. pub fn aya::VerifierLogLevel::clone(&self) -> aya::VerifierLogLevel
  7644. impl core::fmt::Debug for aya::VerifierLogLevel
  7645. pub fn aya::VerifierLogLevel::fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result
  7646. impl core::marker::Copy for aya::VerifierLogLevel
  7647. impl core::marker::Send for aya::VerifierLogLevel
  7648. impl core::marker::Sync for aya::VerifierLogLevel
  7649. impl core::marker::Unpin for aya::VerifierLogLevel
  7650. impl core::panic::unwind_safe::RefUnwindSafe for aya::VerifierLogLevel
  7651. impl core::panic::unwind_safe::UnwindSafe for aya::VerifierLogLevel
  7652. impl<T, U> core::convert::Into<U> for aya::VerifierLogLevel where U: core::convert::From<T>
  7653. pub fn aya::VerifierLogLevel::into(self) -> U
  7654. impl<T, U> core::convert::TryFrom<U> for aya::VerifierLogLevel where U: core::convert::Into<T>
  7655. pub type aya::VerifierLogLevel::Error = core::convert::Infallible
  7656. pub fn aya::VerifierLogLevel::try_from(value: U) -> core::result::Result<T, <T as core::convert::TryFrom<U>>::Error>
  7657. impl<T, U> core::convert::TryInto<U> for aya::VerifierLogLevel where U: core::convert::TryFrom<T>
  7658. pub type aya::VerifierLogLevel::Error = <U as core::convert::TryFrom<T>>::Error
  7659. pub fn aya::VerifierLogLevel::try_into(self) -> core::result::Result<U, <U as core::convert::TryFrom<T>>::Error>
  7660. impl<T> alloc::borrow::ToOwned for aya::VerifierLogLevel where T: core::clone::Clone
  7661. pub type aya::VerifierLogLevel::Owned = T
  7662. pub fn aya::VerifierLogLevel::clone_into(&self, target: &mut T)
  7663. pub fn aya::VerifierLogLevel::to_owned(&self) -> T
  7664. impl<T> core::any::Any for aya::VerifierLogLevel where T: 'static + core::marker::Sized
  7665. pub fn aya::VerifierLogLevel::type_id(&self) -> core::any::TypeId
  7666. impl<T> core::borrow::Borrow<T> for aya::VerifierLogLevel where T: core::marker::Sized
  7667. pub fn aya::VerifierLogLevel::borrow(&self) -> &T
  7668. impl<T> core::borrow::BorrowMut<T> for aya::VerifierLogLevel where T: core::marker::Sized
  7669. pub fn aya::VerifierLogLevel::borrow_mut(&mut self) -> &mut T
  7670. impl<T> core::convert::From<T> for aya::VerifierLogLevel
  7671. pub fn aya::VerifierLogLevel::from(t: T) -> T
  7672. pub unsafe trait aya::Pod: core::marker::Copy + 'static
  7673. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_cpumap_val
  7674. impl aya::Pod for aya_obj::generated::linux_bindings_x86_64::bpf_devmap_val
  7675. impl aya::Pod for i128
  7676. impl aya::Pod for i16
  7677. impl aya::Pod for i32
  7678. impl aya::Pod for i64
  7679. impl aya::Pod for i8
  7680. impl aya::Pod for u128
  7681. impl aya::Pod for u16
  7682. impl aya::Pod for u32
  7683. impl aya::Pod for u64
  7684. impl aya::Pod for u8
  7685. impl<K: aya::Pod> aya::Pod for aya::maps::lpm_trie::Key<K>
  7686. impl<T: aya::Pod, const N: usize> aya::Pod for [T; N]
  7687. pub fn aya::features() -> &'static aya_obj::obj::Features
  7688. pub fn aya::loaded_programs() -> impl core::iter::traits::iterator::Iterator<Item = core::result::Result<aya::programs::ProgramInfo, aya::programs::ProgramError>>